ToolStrip.PaintGrip 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在绘制 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
注解
有关处理事件的详细信息,请参阅 处理和引发事件。