如何在Windows Forms/C#中测试Ctrl向下?
最佳答案
bool ctrl = ((Control.ModifierKeys & Keys.Control) == Keys.Control);
关于c# - 在C#中测试 'Ctrl' keydown,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1143567/
如何在Windows Forms/C#中测试Ctrl向下?
最佳答案
bool ctrl = ((Control.ModifierKeys & Keys.Control) == Keys.Control);
关于c# - 在C#中测试 'Ctrl' keydown,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1143567/