System.Windows.Forms.ToolTip.ToolTipWindow.OnPopup C# (CSharp) Method

OnPopup() private method

private OnPopup ( System.Windows.Forms.PopupEventArgs e ) : void
e System.Windows.Forms.PopupEventArgs
return void
			internal virtual void OnPopup (PopupEventArgs e)
			{
				PopupEventHandler eh = (PopupEventHandler)(Events[PopupEvent]);
				if (eh != null)
					eh (this, e);
				//else
				//	e.ToolTipSize = ThemeEngine.Current.ToolTipSize (this, Text);
			}