我有一个名为MyButton.xaml的ResourceDictionary,其中定义了Style:x:Type ButtonBase。
我知道如何使用此ResourceDictionary来在XAML中定义样式。
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://Application:,,,/Theme;component/MyButton.xaml"/>
</ResourceDictionary.MergedDictionaries>
<Style TargetType="Button" BasedOn="{StaticResource {x:Type ButtonBase}}"/>
</ResourceDictionary>
</Window.Resources>
我想在代码隐藏中做同样的事情。 现在我可以写
var source = new Uri("Theme;component/MyButton.xaml", UriKind.Relative);
Resources.MergedDictionaries.Add(new ResourceDictionary {Source = source});
var buttonBaseStyle = TryFindResource(typeof (ButtonBase)) as Style;
但是,我不明白如何将这个buttonBaseStyle
应用于窗口中的所有按钮(即将其用作按钮的默认样式)。
谁能告诉我怎么样?
答案 0 :(得分:3)
您可以在代码隐藏中添加默认样式,如下所示:
Style btnBaseStyle = TryFindResource(typeof(ButtonBase)) as Style;
Style s = new Style(typeof(Button), btnBaseStyle);
Resources[typeof (Button)] = s;