ToolStrip.PaintGrip イベント

定義

ToolStrip 移動ハンドルが描画される時点で発生します。

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 

イベントの種類

次のコード例では、このメンバーの使用方法を示します。 この例では、イベント ハンドラーがイベントの PaintGrip 発生を報告します。 このレポートは、イベントが発生したタイミングを知るのに役立ち、デバッグに役立ちます。

コード例を実行するには、 という名前ToolStrip1の型ToolStripのインスタンスを含むプロジェクトに貼り付けます。 次に、イベント ハンドラーが イベントに関連付けられていることを確認します PaintGrip

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

注釈

イベントの処理の詳細については、「処理とイベントの発生」を参照してください。

適用対象