如何检测工具条文本框中的Alt +左键
本文关键字:Alt 左键 文本 何检测 检测 工具 | 更新日期: 2023-09-27 18:09:46
在c# - WinForms,如何检测Alt +左键时,它是按在工具栏文本框?
protected override bool ProcessCmdKey(ref Message msg, Keys keyData) {
if (this.ActiveControl == toolStripTextBox1.Control && keyData == (Keys.Alt | Keys.Left)) {
MessageBox.Show("it's special");
return true;
}
return base.ProcessCmdKey(ref msg, keyData);
}