Shape.ContextMenu 属性

获取或设置快捷菜单与 line 或 shape 控件。

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

语法

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

属性值

类型:System.Windows.Forms.ContextMenu
ContextMenu 表示控件的快捷菜单或 null 引用 (在 Visual Basic的Nothing ); 如果没有 ContextMenu 分配。默认为 null 引用(Visual Basic 中为 Nothing)。

备注

,当用户右击控件时,请使用快捷菜单提供特定于上下文菜单中选择用户。

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

示例

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

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 OvalShape. 
    If e.Button = MouseButtons.Right Then
        OvalShape1.ContextMenu.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 OvalShape. 
    if (e.Button == MouseButtons.Right)
    {
        ovalShape1.ContextMenu.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)