System.Windows.Forms.XplatUIX11.SystrayRemove C# (CSharp) Method

SystrayRemove() private method

private SystrayRemove ( IntPtr handle, ToolTip &tt ) : void
handle IntPtr
tt ToolTip
return void
		internal override void SystrayRemove(IntPtr handle, ref ToolTip tt) {

			SetVisible (handle, false, false);

			// The caller can now re-dock it later...
			if (tt != null) {
				tt.Dispose();
				tt = null;
			}
		}
XplatUIX11