我正在学习WPF的MVVM模式,以便在我的应用程序中使用它。我无法绑定任何内容,因为我的XAML代码说“名称'NAME'在命名空间'NAMESPACE'中不存在。”
我的XAML代码:
04.03.16
03.03.16
02.03.16
01.03.16
我添加了MainViewModel.cs。这是代码。
<Window x:Class="mvvm.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:mvvm.ViewModel"
Title="MainWindow" Height="350" Width="525">
<Window.DataContext>
<local:MainViewModel/>
</Window.DataContext>
<!--<Window.Resources>
<local:MainViewModel x:Key="ViewModel"/>
</Window.Resources>-->
<Grid>
<Button Width="100" Height="100" Content="Binding ButtonContent"/>
</Grid>
</Window>
我无法找到合适的解决方案。任何人都可以帮我这个吗?