我正在关注这个例子,开始使用MVVM
但是,我的数据未显示在主窗口的文本框中
在mainwindow.cs中,我有这行代码
this.DataContext = new MainPageViewModel();
在mainwindow.xaml中我有这一行:
<TextBox Height="23" HorizontalAlignment="Left" Margin="12,23,0,0" Name="textBoxTitle" VerticalAlignment="Top" Width="206" Text="{Binding Title}"/>
但是标题不会显示在文本框中。单步执行代码,显示DataContext中的数据。如何才能显示标题?