标签: c# icommand
Microsoft Visual Studio无法编译我的代码,因为缺少ICommand的命名空间。但它是System.Windows.Input,不是吗?
using System.Windows.Input; internal class CommandCreate : ICommand { //code }
答案 0 :(得分:2)
确保您已创建WPF应用程序。 ICommand是System.Windows.Input命名空间和System.dll程序集的一部分。
System.Windows.Input
System.dll