BlackBerry.Screen.Context.UnregisterWindow C# (CSharp) Метод

UnregisterWindow() приватный Метод

private UnregisterWindow ( Window win ) : void
win Window
Результат void
        internal void UnregisterWindow(Window win)
        {
            windows.Remove (win.Handle);
        }

Usage Example

Пример #1
0
 public void Dispose()
 {
     context.UnregisterWindow(this);
     if (screen_destroy_window(handle) != 0)
     {
         // TODO: read errno
         throw new Exception("Unable to destroy window");
     }
 }