我想检测(就像posible一样简单)" ctrl + o"键然后显示一条消息。 我试过了: enter link description here enter link description here
和其他4个链接,我无法告诉你。请帮忙。
答案 0 :(得分:0)
试试这个。它对我有用。
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Modifiers == Keys.Control && e.KeyCode.ToString() == "O")
{
MessageBox.Show("ctrl + o pressed");
}
}