次の方法で共有


Shape.ContextMenuStrip プロパティ

ContextMenuStrip をライン コントロールまたはシェイプ コントロールに関連付けられた取得または設定します。

名前空間:  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 があるコントロールの ContextMenuStrip、または null 参照 (Visual Basic の Nothing) が割り当てられます。既定値は null 参照 (Visual Basic の場合は Nothing) です。

解説

ContextMenu は、コントロールに割り当て、ContextMenu のプロパティは ContextMenuStrip のプロパティに優先されます。

次の例では、マウスの右ボタンをクリックして離すと OvalShape のコントロールに割り当てる ContextMenuStrip を表示します。このコードは、の 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)

ライン コントロールとシェイプ コントロールの概要 (Visual Studio)