47 lines
2.0 KiB
Plaintext
47 lines
2.0 KiB
Plaintext
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="clr-namespace:Plane.FormationCreator"
|
||
|
xmlns:c="http://metro.mahapps.com/winfx/xaml/controls"
|
||
|
xmlns:ec="clr-namespace:Plane.Windows.Controls;assembly=Plane.Windows">
|
||
|
|
||
|
<ResourceDictionary.MergedDictionaries>
|
||
|
<ResourceDictionary Source="/Styles/Colors.xaml" />
|
||
|
<ResourceDictionary Source="/Styles/Button.xaml" />
|
||
|
<ResourceDictionary Source="/Styles/ProgressButton.xaml" />
|
||
|
<ResourceDictionary Source="/Styles/TextBox.xaml" />
|
||
|
<ResourceDictionary Source="/Styles/TabControl.xaml" />
|
||
|
<ResourceDictionary Source="/Styles/Window.xaml" />
|
||
|
<ResourceDictionary Source="/Styles/ComboBox.xaml" />
|
||
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
||
|
<FontFamily x:Key="AlertFontFamily">Microsoft YaHei</FontFamily>
|
||
|
|
||
|
<Style TargetType="PasswordBox"
|
||
|
BasedOn="{StaticResource {x:Type PasswordBox}}">
|
||
|
<Setter Property="Padding"
|
||
|
Value="2" />
|
||
|
</Style>
|
||
|
<Style x:Key="MetroComboBoxItem"
|
||
|
TargetType="{x:Type ComboBoxItem}"
|
||
|
BasedOn="{StaticResource MetroComboBoxItem}">
|
||
|
<Style.Resources>
|
||
|
<SolidColorBrush x:Key="AccentColorBrush"
|
||
|
Color="{StaticResource HighlightColor}" />
|
||
|
<SolidColorBrush x:Key="AccentColorBrush2"
|
||
|
Color="#3F3F46" />
|
||
|
</Style.Resources>
|
||
|
</Style>
|
||
|
<Style TargetType="c:MetroProgressBar"
|
||
|
BasedOn="{StaticResource {x:Type c:MetroProgressBar}}">
|
||
|
<Setter Property="Foreground"
|
||
|
Value="#007ACC" />
|
||
|
</Style>
|
||
|
<Style TargetType="CheckBox"
|
||
|
BasedOn="{StaticResource {x:Type CheckBox}}">
|
||
|
<Style.Resources>
|
||
|
<SolidColorBrush x:Key="CheckBoxBrush"
|
||
|
Color="Gray" />
|
||
|
</Style.Resources>
|
||
|
</Style>
|
||
|
|
||
|
</ResourceDictionary>
|