我想用我的視圖模型作爲我的窗口的DataContext的,但我得到的錯誤:設置Window.Datacontext
ViewModel is not supported in a Windows Presentation Foundation (WPF) project.
很顯然,我不理解的東西有關語法和數據綁定我的窗口,我的視圖模型,但我不確定我不知道的是什麼。
對於我應該閱讀的內容有何建議?
<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>
您缺少名稱空間。 –