Control.ContextMenu プロパティ
コントロールに関連付けられたショートカット メニューを取得または設定します。
Public Overridable Property ContextMenu As ContextMenu
[C#]
public virtual ContextMenu ContextMenu {get; set;}
[C++]
public: __property virtual ContextMenu* get_ContextMenu();public: __property virtual void set_ContextMenu(ContextMenu*);
[JScript]
public function get ContextMenu() : ContextMenu;public function set ContextMenu(ContextMenu);
プロパティ値
コントロールに関連付けられたショートカット メニューを表す ContextMenu 。
解説
ショートカット メニューはコンテキスト メニューとも呼ばれます。ショートカット メニューは、ユーザーがコントロールを右クリックすると、コンテキストに固有なメニュー オプションがユーザーに表示されるようにするために使用されます。
継承時の注意: 派生クラスで ContextMenu プロパティをオーバーライドする場合は、基本クラスの ContextMenu プロパティを使用して、基本の実装を拡張します。それ以外の場合は、すべての実装を提供する必要があります。 ContextMenu プロパティの get アクセサと set アクセサの両方をオーバーライドする必要はありません。必要に応じて 1 つだけオーバーライドする場合はあります。
使用例
[Visual Basic, C#, C++] マウスの右ボタンが押されて離されたときに、 TreeView に割り当てられている ContextMenu を表示する例を次に示します。このコードは、 TreeView を持つ Form があることを前提にしています。また、 TreeView には、その ContextMenu プロパティに割り当てられている ContextMenu が含まれていることも前提としています。
Private Sub treeView1_MouseUp(sender As Object, _
e As MouseEventArgs) Handles treeView1.MouseUp
' If the right mouse button was clicked and released,
' display the context menu assigned to the TreeView.
If e.Button = MouseButtons.Right Then
treeView1.ContextMenu.Show(treeView1, New Point(e.X, e.Y))
End If
End Sub
[C#]
private void treeView1_MouseUp(object sender, MouseEventArgs e)
{
// If the right mouse button was clicked and released,
// display the context menu assigned to the TreeView.
if(e.Button == MouseButtons.Right)
{
treeView1.ContextMenu.Show(treeView1, new Point(e.X, e.Y) );
}
}
[C++]
private:
void treeView1_MouseUp(Object* /*sender*/, MouseEventArgs* e) {
// If the right mouse button was clicked and released,
// display the context menu assigned to the TreeView.
if (e->Button == MouseButtons::Right) {
treeView1->ContextMenu->Show(treeView1, Point(e->X, e->Y));
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Control クラス | Control メンバ | System.Windows.Forms 名前空間 | ContextMenu