BlackBerry.Screen.Context.UnregisterWindow C# (CSharp) Method

UnregisterWindow() private method

private UnregisterWindow ( Window win ) : void
win Window
return void
        internal void UnregisterWindow(Window win)
        {
            windows.Remove (win.Handle);
        }

Usage Example

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");
     }
 }