【发布时间】:2008-11-28 12:19:34
【问题描述】:
喜欢:
Windows Key + E
Opens a new Explorer Window
还有:
Windows Key + R
Displays the Run command
如何在我的应用程序的 KeyDown 事件中使用 Windows 键?
【问题讨论】:
喜欢:
Windows Key + E
Opens a new Explorer Window
还有:
Windows Key + R
Displays the Run command
如何在我的应用程序的 KeyDown 事件中使用 Windows 键?
【问题讨论】:
如果您想在事件处理程序中处理这些键,请使用 Keys.LWin 和 Keys.RWin
通常我不建议使用这些,因为未来版本的 Windows 可能会引入新的快捷方式,这会干扰您的组合。
【讨论】: