我是 WPF 新手,我想在 WPF 中使用“键”对象。这就是我的代码在 WinForm 中的样子
public List<Keys> keysList= new List<Keys>();
我想在我的 WPF 应用程序中使用它,但它无法识别“键”。有没有其他选择?我在网上搜索,一无所获。
谢谢!!!!
我认为您正在使用Key Enumeration Namespace: System.Windows.Forms,您应该在其中使用Key Enumeration Namespace: System.Windows.Input
您需要using System.Windows.Input
在表单顶部添加声明。如果这不起作用,请确保您引用的是WindowsBase.dll
.
只需从 Keys 中删除字母 s 即可成为 Key
public List<Key> keysList = new List<Key>();