CheckedListBox.DrawItem Event
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.
Occurs when a visual aspect of an owner-drawn CheckedListBox changes. This event is not relevant to this class.
public:
event System::Windows::Forms::DrawItemEventHandler ^ DrawItem;
[System.ComponentModel.Browsable(false)]
public event System.Windows.Forms.DrawItemEventHandler DrawItem;
[System.ComponentModel.Browsable(false)]
public event System.Windows.Forms.DrawItemEventHandler? DrawItem;
[<System.ComponentModel.Browsable(false)>]
member this.DrawItem : System.Windows.Forms.DrawItemEventHandler
Public Custom Event DrawItem As DrawItemEventHandler
Event Type
- Attributes
Remarks
This event is used by an owner-drawn CheckedListBox. The event is raised only when the DrawMode property is set to DrawMode.OwnerDrawFixed or DrawMode.OwnerDrawVariable. You can use this event to perform the tasks needed to draw items in the CheckedListBox. If you have a variable-sized item (that is, DrawMode is set to DrawMode.OwnerDrawVariable), the MeasureItem event is raised before the item is drawn. You can create an event handler for the MeasureItem event to specify the size for the item that you are going to draw in your event handler for the DrawItem event.
This event is not relevant to this class.