ToolStripRenderer.DrawItemCheck(ToolStripItemImageRenderEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Draws an image on a ToolStripItem that indicates the item is in a selected state.
public:
void DrawItemCheck(System::Windows::Forms::ToolStripItemImageRenderEventArgs ^ e);
public void DrawItemCheck (System.Windows.Forms.ToolStripItemImageRenderEventArgs e);
member this.DrawItemCheck : System.Windows.Forms.ToolStripItemImageRenderEventArgs -> unit
Public Sub DrawItemCheck (e As ToolStripItemImageRenderEventArgs)
Parameters
A ToolStripItemImageRenderEventArgs that contains the data to draw the selected image.
Remarks
The DrawItemCheck method provides the entry point to the rendering code for an image in a selected state. Use this method to draw a selected image when overriding the ToolStripItem.OnPaint method, or to force a selected image to be drawn in a custom ToolStripRenderer. To change the way a selected image is rendered, override the OnRenderItemCheck method in a class derived from ToolStripRenderer.