美好的一天,
我遇到https://github.com/Windows-XAML/Template10
的问题 在My View上的可以说我有一个文本框,它的text属性绑定到我的VM(注意:我的VM从template10继承了BindableBase:
private string _sampleText;
public string SampleText {
get { return _sampleText; }
set { this.SetProperty(ref _sampleText, value); }
}
但是每次我在文本框中输入文本时我都有一个 null引用来自RaisePropertyChanged的异常
我想我需要在app.xaml.cs上使用BootStrapper对template10进行初始化
怎么样?
由于
答案 0 :(得分:0)
搜索后发现您只需要安装template10模板包:https://marketplace.visualstudio.com/items?itemName=jerry-nixon.Template10TemplatePack