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

OnDraw() private method

private OnDraw ( DrawToolTipEventArgs e ) : void
e DrawToolTipEventArgs
return void
			internal virtual void OnDraw (DrawToolTipEventArgs e)
			{
				DrawToolTipEventHandler eh = (DrawToolTipEventHandler)(Events[DrawEvent]);
				if (eh != null)
					eh (this, e);
				//else
				//	ThemeEngine.Current.DrawToolTip (e.Graphics, e.Bounds, this);
			}