'Declaration
Public Event RenderItemBackground As System.Windows.Forms.ToolStripItemRenderEventHandler
'Usage
Dim instance As NToolStripSkinRenderer Dim handler As System.Windows.Forms.ToolStripItemRenderEventHandler AddHandler instance.RenderItemBackground, handler
public event System.Windows.Forms.ToolStripItemRenderEventHandler RenderItemBackground
Event Data
The event handler receives an argument of type System.Windows.Forms.ToolStripItemRenderEventArgs containing data related to this event. The following ToolStripItemRenderEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Graphics | Gets the graphics used to paint the System.Windows.Forms.ToolStripItem. |
Item | Gets the System.Windows.Forms.ToolStripItem to paint. |
ToolStrip | Gets the value of the System.Windows.Forms.ToolStripItem.Owner property for the System.Windows.Forms.ToolStripItem to paint. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also