gpt4 book ai didi

c# - 如何为 Windows Forms 窗体设置热键

转载 作者:可可西里 更新时间:2023-11-01 03:03:25 26 4
gpt4 key购买 nike

我想在我的 Windows 窗体表单中设置热键。例如,Ctrl + N 用于新建表单,Ctrl + S 用于保存。我该怎么做?

最佳答案

设置

myForm.KeyPreview = true;

KeyDown 创建处理程序 事件:

myForm.KeyDown += new KeyEventHandler(Form_KeyDown);

处理程序示例:

    // Hot keys handler
void Form_KeyDown(object sender, KeyEventArgs e)
{
if (e.Control && e.KeyCode == Keys.S) // Ctrl-S Save
{
// Do what you want here
e.SuppressKeyPress = true; // Stops other controls on the form receiving event.
}
}

关于c# - 如何为 Windows Forms 窗体设置热键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5048748/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com