MouseEventArgs.Button Property
.NET Framework 4
Gets which mouse button was pressed.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example handles the MouseDown event on a TextBox control so that clicking the right mouse button selects all the text in the control. This example requires that you have a form that contains a TextBox control named textBox1.
private void Form1_Load(object sender, EventArgs e) { // This line suppresses the default context menu for the TextBox control. textBox1.ContextMenu = new ContextMenu(); textBox1.MouseDown += new MouseEventHandler(textBox1_MouseDown); } void textBox1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e) { if (e.Button == MouseButtons.Right) { textBox1.Select(0, textBox1.Text.Length); } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.