2017-10-13 62 views
1

美好的一天,如何初始化template10基礎設施開始應用

林具有https://github.com/Windows-XAML/Template10

在我的視圖的問題可以說我有一個文本框和文本屬性綁定到我的虛擬機(注:我的VM繼承BindableBase從template10:

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

但每次我從輸入具有RaisePropertyChanged一個空引用異常在我的文本框中林文本

我想我需要在我的app.xaml.cs上使用BootStrapper實現template10

那是怎麼回事?

感謝

+1

有除基本設置外,沒有額外的框架初始化。你看過樣品嗎?你使用什麼模板(最小,空白或漢堡包)? – mvermef

+0

是是的我發現所有你需要的是安裝template10模板包 – NicoTing

+1

小心不要混淆主存儲庫和nuget可用。 Master = T10.2,其中nuget爲10.0 – mvermef

回答