ItemDragEventArgs.Button プロパティ
ドラッグ操作中にクリックされたマウス ボタン名を取得します。
Public ReadOnly Property Button As MouseButtons
[C#]
public MouseButtons Button {get;}
[C++]
public: __property MouseButtons get_Button();
[JScript]
public function get Button() : MouseButtons;
プロパティ値
MouseButtons 値の 1 つ。
解説
このプロパティを使用すると、ドラッグ アンド ドロップ操作中にどちらのマウス ボタンが押されたかを判断できます。このプロパティの値を使用すると、ドラッグ アンド ドロップ操作をどのように実行するかを正しく判断できます。
使用例
[Visual Basic, C#, C++] TreeView コントロール内のドラッグ アンド ドロップ操作が有効な場合の ItemDragEventArgs クラスの使用例を次に示します。ドラッグしたノードがドラッグ先に移動されるかコピーされるかは、 Button プロパティによって決まります。次に、 Item プロパティによって表されているノードが、ドラッグ アンド ドロップ操作による期待した効果を示す値と共に System.Windows.Forms.TreeView.DoDragDrop メソッドに渡されます。
[Visual Basic, C#, C++] 詳細については、 TreeView.ItemDrag のリファレンス トピックを参照してください。
Private Sub treeView1_ItemDrag(ByVal sender As Object, ByVal e As ItemDragEventArgs)
' Move the dragged node when the left mouse button is used.
If e.Button = MouseButtons.Left Then
DoDragDrop(e.Item, DragDropEffects.Move)
' Copy the dragged node when the right mouse button is used.
ElseIf e.Button = MouseButtons.Right Then
DoDragDrop(e.Item, DragDropEffects.Copy)
End If
End Sub 'treeView1_ItemDrag
[C#]
private void treeView1_ItemDrag(object sender, ItemDragEventArgs e)
{
// Move the dragged node when the left mouse button is used.
if (e.Button == MouseButtons.Left)
{
DoDragDrop(e.Item, DragDropEffects.Move);
}
// Copy the dragged node when the right mouse button is used.
else if (e.Button == MouseButtons.Right)
{
DoDragDrop(e.Item, DragDropEffects.Copy);
}
}
[C++]
private:
void treeView1_ItemDrag(Object* /*sender*/, ItemDragEventArgs* e)
{
// Move the dragged node when the left mouse button is used.
if (e->Button == MouseButtons::Left)
{
DoDragDrop(e->Item, DragDropEffects::Move);
}
// Copy the dragged node when the right mouse button is used.
else if (e->Button == MouseButtons::Right)
{
DoDragDrop(e->Item, DragDropEffects::Copy);
}
}
[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 ファミリ
参照
ItemDragEventArgs クラス | ItemDragEventArgs メンバ | System.Windows.Forms 名前空間