DrawItemEventArgs Class
Provides data for the DrawItem event.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
System::EventArgs
System.Windows.Forms::DrawItemEventArgs
System.Windows.Forms::StatusBarDrawItemEventArgs
| Name | Description | |
|---|---|---|
![]() | DrawItemEventArgs(Graphics^, Font^, Rectangle, Int32, DrawItemState) | Initializes a new instance of the DrawItemEventArgs class for the specified control with the specified font, state, surface to draw on, and the bounds to draw within. |
![]() | DrawItemEventArgs(Graphics^, Font^, Rectangle, Int32, DrawItemState, Color, Color) | Initializes a new instance of the DrawItemEventArgs class for the specified control with the specified font, state, foreground color, background color, surface to draw on, and the bounds to draw within. |
| Name | Description | |
|---|---|---|
![]() | BackColor | Gets the background color of the item that is being drawn. |
![]() | Bounds | Gets the rectangle that represents the bounds of the item that is being drawn. |
![]() | Font | Gets the font that is assigned to the item being drawn. |
![]() | ForeColor | Gets the foreground color of the of the item being drawn. |
![]() | Graphics | Gets the graphics surface to draw the item on. |
![]() | Index | Gets the index value of the item that is being drawn. |
![]() | State | Gets the state of the item being drawn. |
| Name | Description | |
|---|---|---|
![]() | DrawBackground() | Draws the background within the bounds specified in the DrawItemEventArgs constructor and with the appropriate color. |
![]() | DrawFocusRectangle() | Draws a focus rectangle within the bounds specified in the DrawItemEventArgs constructor. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The following example demonstrates how to create owner-drawn ListBox items. The code uses the DrawMode property to specify that the items drawn are fixed sized and the DrawItem event to perform the drawing of each item into the ListBox. The example code uses the properties and methods of the DrawItemEventArgs class passed as a parameter to the event handler to draw the items. This example assumes that a ListBox control that is named listBox1 has been added to a form and that the DrawItem event is handled by the event handler defined in the example code. The example also assumes that items have been added to the ListBox with the text of "Apple", "Orange", and "Plum" in that order.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


