如何初始化 template10 基础设施以启动应用程序

How to initialize template10 infrastructure to start application

美好的一天,

我遇到了 https://github.com/Windows-XAML/Template10

的问题

在我的视图中假设我有一个文本框,它的文本 属性 绑定到我的 VM(注意:我的 VM 从模板 10 继承了 BindableBase:

private string _sampleText;
    public string SampleText {
        get { return _sampleText; }
        set { this.SetProperty(ref _sampleText, value); }
    }

但每次我在我的文本框中输入文本时,我都会遇到来自 RaisePropertyChanged

空引用异常

我想我需要在 app.xaml.cs

上使用 BootStrapper 来安装 template10

怎么样?

谢谢

搜索后发现只需要安装template10模板包即可:https://marketplace.visualstudio.com/items?itemName=jerry-nixon.Template10TemplatePack

然后 select template10 模板然后全部设置 请看附图: