c#鼠标点击事件代码
时间: 2023-07-27 15:15:15 浏览: 194
C#鼠标事件
5星 · 资源好评率100%
以下是C#中鼠标点击事件的代码示例:
```csharp
private void Form1_MouseClick(object sender, MouseEventArgs e)
{
// 获取鼠标点击的位置
int x = e.X;
int y = e.Y;
// 判断鼠标点击的按钮
if (e.Button == MouseButtons.Left)
{
// 左键点击事件处理
MessageBox.Show("Left button clicked at (" + x + ", " + y + ")");
}
else if (e.Button == MouseButtons.Right)
{
// 右键点击事件处理
MessageBox.Show("Right button clicked at (" + x + ", " + y + ")");
}
}
```
注意:需要在窗体设计器中将窗体的 `MouseClick` 事件绑定到上述方法。
阅读全文