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

DrawToolTipEventArgs() 공개 메소드

public DrawToolTipEventArgs ( Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font ) : System.Drawing
graphics System.Drawing.Graphics
associatedWindow IWin32Window
associatedControl Control
bounds System.Drawing.Rectangle
toolTipText string
backColor Color
foreColor Color
font System.Drawing.Font
리턴 System.Drawing
		public DrawToolTipEventArgs (Graphics graphics, IWin32Window associatedWindow, Control associatedControl, Rectangle bounds, string toolTipText, Color backColor, Color foreColor, Font font)
		{
			this.graphics = graphics;
			this.associated_window = associatedWindow;
			this.associated_control = associatedControl;
			this.bounds = bounds;
			this.tooltip_text = toolTipText;
			this.back_color = backColor;
			this.fore_color = foreColor;
			this.font = font;
		}