Shape.ContextMenuStrip 属性

获取或设置 ContextMenuStrip 与 line 或 shape 控件。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
<BrowsableAttribute(True)> _
Public Overridable Property ContextMenuStrip As ContextMenuStrip
[BrowsableAttribute(true)]
public virtual ContextMenuStrip ContextMenuStrip { get; set; }
[BrowsableAttribute(true)]
public:
virtual property ContextMenuStrip^ ContextMenuStrip {
    ContextMenuStrip^ get ();
    void set (ContextMenuStrip^ value);
}
[<BrowsableAttribute(true)>]
abstract ContextMenuStrip : ContextMenuStrip with get, set
[<BrowsableAttribute(true)>]
override ContextMenuStrip : ContextMenuStrip with get, set
function get ContextMenuStrip () : ContextMenuStrip
function set ContextMenuStrip (value : ContextMenuStrip)

属性值

类型:System.Windows.Forms.ContextMenuStrip
控件的 ContextMenuStrip 则返回 null 引用 (在 Visual Basic的Nothing ); 如果没有 ContextMenuStrip 分配。默认为 null 引用(Visual Basic 中为 Nothing)。

备注

如果 ContextMenu 也被分配到控件, ContextMenu 属性优先于 ContextMenuStrip 属性。

示例

,当鼠标右键单击并释放时,下面的示例演示 ContextMenuStrip 分配给 OvalShape 控件。 此代码需要具有一个 OvalShape 控件的 Form 到此。 它还要求已经为 OvalShape 的 [ContextMenuStrip] 属性分配了一个 T:System.Windows.Forms.ContextMenuStrip。

Private Sub OvalShape1_MouseUp(
    ByVal sender As Object, 
    ByVal e As MouseEventArgs
  ) Handles OvalShape1.MouseUp

    ' If the right mouse button is clicked and released,
    ' display the shortcut menu assigned to the TreeView. 
    If e.Button = MouseButtons.Right Then
        OvalShape1.ContextMenuStrip.Show(Me, New Point(e.X, e.Y))
    End If
End Sub
        private void ovalShape1_MouseUp(object sender, MouseEventArgs e)
        {
            // If the right mouse button is clicked and released,
            // display the shortcut menu assigned to the TreeView. 
            if (e.Button == MouseButtons.Right)
            {
                ovalShape1.ContextMenuStrip.Show(this, new Point(e.X, e.Y));
            }
        }

.NET Framework 安全性

请参见

参考

Shape 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)

Line 和 Shape 控件简介 (Visual Studio)