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

SystrayBalloon() private method

private SystrayBalloon ( IntPtr handle, int timeout, string title, string text, ToolTipIcon icon ) : void
handle IntPtr
timeout int
title string
text string
icon ToolTipIcon
return 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