使用c#在windows窗体应用程序中创建带有多个字符的快捷键(ALt+DE)
本文关键字:字符 快捷键 ALt+DE windows 窗体 应用程序 创建 使用 | 更新日期: 2023-09-27 18:16:31
我想用c#在windows窗体应用程序中设计一个快捷键框架。例如"Alt + DE",这样第二个快捷键选项是多个字符的组合。
MSDN:
https://support.microsoft.com/en-gb/kb/839201
示例代码:
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
if (e.Alt && e.KeyCode.ToString() == "F")
{
// When the user presses both the 'Alt' key and 'F' key,
// KeyPreview is set to False, and a message appears.
// This message is only displayed when KeyPreview is set to True.
this.KeyPreview = true;
MessageBox.Show("KeyPreview is True, and this is from the FORM.");
}
}