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

SystrayBalloon() 개인적인 메소드

private SystrayBalloon ( IntPtr handle, int timeout, string title, string text, ToolTipIcon icon ) : void
handle IntPtr
timeout int
title string
text string
icon ToolTipIcon
리턴 void
		internal override void SystrayBalloon(IntPtr handle, int timeout, string title, string text, ToolTipIcon icon)
		{
			ThemeEngine.Current.ShowBalloonWindow (handle, timeout, title, text, icon);
			SendMessage(handle, Msg.WM_USER, IntPtr.Zero, (IntPtr) Msg.NIN_BALLOONSHOW);	
		}
#endif
XplatUIX11