C# 在获得鼠标点击事件时,如何判断Control键,Shift键被按下
2021-07-11 08:09
标签:span sed .sh key color click 判断 cli col 在C#的窗体程序中,获得鼠标点击的事件时,想要得知当前是否有Control键,Shift键等是否被按下。 C# 在获得鼠标点击事件时,如何判断Control键,Shift键被按下 标签:span sed .sh key color click 判断 cli col 原文地址:https://www.cnblogs.com/dj-smile/p/9655752.html 1 private void xxx_MouseClick(object sender, MouseEventArgs e)
2 {
3 if ((Control.ModifierKeys & Keys.Control) == Keys.Control)// CTRL is pressed
4 {
5
6 }
7
8 if ((Control.ModifierKeys & Keys.Shift) == Keys.Shift)
9 {
10
11 }
12 }
上一篇:win7 wamp 64位 php环境如何开启curl服务?
下一篇:Ubuntu16.04更新软件源,执行apt-get update时出现“The following signatures couldn't be verified”错误
文章标题:C# 在获得鼠标点击事件时,如何判断Control键,Shift键被按下
文章链接:http://soscw.com/index.php/essay/103624.html