blob: 63dff8070dfd77b43136ebd9a6091bcf969f4123 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Button.xaml" />
</ResourceDictionary.MergedDictionaries>
<Style BasedOn="{StaticResource MaterialDesignFlatButton}"
TargetType="{x:Type Button}" />
<Style x:Key="AccentedDialogSquareButton"
BasedOn="{StaticResource MaterialDesignFlatButton}"
TargetType="{x:Type Button}" />
<Style x:Key="AccentedDialogHighlightedSquareButton"
BasedOn="{StaticResource MaterialDesignFlatButton}"
TargetType="{x:Type Button}"/>
</ResourceDictionary>
|