1
我有兩個資源字典如何改變應用程序的主題動態地app.xaml.cs文件
- DarkTheme.xaml
- LightTheme.xaml
我加載默認情況下LightTheme
當應用程序在app.xaml文件中使用以下代碼啓動時
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Themes/LightTheme.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
我想他喜歡的問題給予一個選項,用戶自己可以改變應用程序的主題是,我怎麼能當用戶選擇該主題和負載LightTheme.xaml
文件加載DarkTheme.xaml
文件時,它選擇。