Skip to main content
.NET Framework Class Library
ToolStrip..::.PaintGrip Event

Occurs when the ToolStrip move handle is painted.

Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Syntax
Public Event PaintGrip As PaintEventHandler
public event PaintEventHandler PaintGrip
public:
 event PaintEventHandler^ PaintGrip {
	void add (PaintEventHandler^ value);
	void remove (PaintEventHandler^ value);
}
member PaintGrip : IEvent<PaintEventHandler,
    PaintEventArgs>
Remarks

For more information about handling events, see Consuming Events.

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 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


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" );
}

Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.