我对WPF中的MVVM结构很新。我正在尝试使用this tutorial中的“示例1”在我的ViewModel中编写一个按钮单击命令,由于某种原因我遇到了Command
的问题。我收到The type or namespace name 'Command' could not be found (are you missing a using directive or an assembly reference?)
编译错误。我是否需要包含新的命名空间,还是需要在viewModel中包含其他函数?
答案 0 :(得分:-1)
如果您只是输入了示例,则缺少Command
的定义,该定义包含在Apex
项目Apex.MVVM
命名空间中。它实现了ICommand
接口。
选项:
Command