System.Windows.Forms.XplatUIX11.SystrayRemove C# (CSharp) 메소드

SystrayRemove() 개인적인 메소드

private SystrayRemove ( IntPtr handle, ToolTip &tt ) : void
handle IntPtr
tt ToolTip
리턴 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