我正在尝试将我的视图模型用作窗口的数据上下文,但出现错误:
Windows Presentation Foundation (WPF) 项目不支持 ViewModel。
显然,我不了解有关我的窗口到我的视图模型的语法和数据绑定的某些内容,但我不确定我不知道的是什么。
关于我应该阅读什么的任何建议?
<Window x:Class="SunnyBeam.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="SunnyBeam" Height="488.358" Width="1014.552">
<Window.DataContext>
<ViewModel/>
</Window.DataContext>
<Grid>
</Grid>
</Window>