我想在 WPF 上添加 expressiondark 主题。
在 App.xaml 中:
<Application x:Class="ThemesSample.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MYWINDOW.xaml">
<Application.Resources>
<ResourceDictionary Source="ExpressionDark.xaml"/>
</Application.Resources>
</Application>
在 MainWindow.cs 中:
public MainWindow()
{
ResourceDictionary skin = new ResourceDictionary();
skin.Source = new Uri(@"MYPROJECTADDR\ExpressionDark.xaml", UriKind.Absolute);
App.Current.Resources.MergedDictionaries.Add(skin);
}
并在项目中添加了 expressiondark.xaml。但是 xpressiondark.xaml 中的所有 xmlns 行都有错误。
怎么了?