System.Windows.Forms.ThemeWin32Classic.HideBalloonWindow C# (CSharp) Method

HideBalloonWindow() public method

public HideBalloonWindow ( IntPtr handle ) : void
handle IntPtr
return void
		public override void HideBalloonWindow (IntPtr handle)
		{
			if (balloon_window == null || balloon_window.OwnerHandle != handle)
				return;

			balloon_window.Close ();
			balloon_window.Dispose ();
			balloon_window = null;
		}
ThemeWin32Classic