ToolStrip.PaintGrip Event

Definition

Occurs when the ToolStrip move handle is painted.

public:
 event System::Windows::Forms::PaintEventHandler ^ PaintGrip;
public event System.Windows.Forms.PaintEventHandler PaintGrip;
public event System.Windows.Forms.PaintEventHandler? PaintGrip;
member this.PaintGrip : System.Windows.Forms.PaintEventHandler 
Public Custom Event PaintGrip As PaintEventHandler 

Event Type

Examples

The following code example demonstrates the use of this member. In the example, an event handler reports on the occurrence of the PaintGrip event. This report helps you to learn when the event occurs and can assist you in debugging.

To run the example code, paste it into a project that contains an instance of type ToolStrip named ToolStrip1. Then ensure that the event handler is associated with the PaintGrip event.

private void ToolStrip1_PaintGrip(Object sender, PaintEventArgs e) {

System.Text.StringBuilder messageBoxCS = new System.Text.StringBuilder();
messageBoxCS.AppendFormat("{0} = {1}", "ClipRectangle", e.ClipRectangle );
messageBoxCS.AppendLine();
messageBoxCS.AppendFormat("{0} = {1}", "Graphics", e.Graphics );
messageBoxCS.AppendLine();
MessageBox.Show(messageBoxCS.ToString(), "PaintGrip Event" );
}
Private Sub ToolStrip1_PaintGrip(sender as Object, e as PaintEventArgs) _ 
     Handles ToolStrip1.PaintGrip

    Dim messageBoxVB as New System.Text.StringBuilder()
    messageBoxVB.AppendFormat("{0} = {1}", "ClipRectangle", e.ClipRectangle)
    messageBoxVB.AppendLine()
    messageBoxVB.AppendFormat("{0} = {1}", "Graphics", e.Graphics)
    messageBoxVB.AppendLine()
    MessageBox.Show(messageBoxVB.ToString(),"PaintGrip Event")

End Sub

Remarks

For more information about handling events, see Handling and Raising Events.

Applies to