23 lines
911 B
XML
23 lines
911 B
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:controls="clr-namespace:WPFluent.Controls"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/WPFluent;component/Controls/Button/Button.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<Style
|
|
BasedOn="{StaticResource DefaultUiButtonStyle}"
|
|
TargetType="{x:Type controls:CalendarDatePicker}"
|
|
x:Key="DefaultUiCalendarDatePickerStyle">
|
|
<Setter Property="Icon">
|
|
<Setter.Value>
|
|
<controls:SymbolIcon Symbol="CalendarRtl24" />
|
|
</Setter.Value>
|
|
</Setter>
|
|
</Style>
|
|
|
|
<Style BasedOn="{StaticResource DefaultUiCalendarDatePickerStyle}" TargetType="{x:Type controls:CalendarDatePicker}" />
|
|
|
|
</ResourceDictionary> |