You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
2.1 KiB
XML

<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:,,,/Philisense.Congress;component/Resources/Styles/BaseStyle.xaml"></ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
<LinearGradientBrush x:Key="LinearGradientBlueBackground" EndPoint="0.5,1" StartPoint="0.5,0">
<GradientStop Color="#FF377F" Offset="0" />
<GradientStop Color="#FF074C" Offset="1" />
</LinearGradientBrush>
<Color x:Key="myButtonColor">LightCoral</Color>
<Style x:Key="mywpfbutton" TargetType="{x:Type Button}">
<Setter Property="Background" Value="{StaticResource LinearGradientBlueBackground }"></Setter>
<Setter Property="Foreground" Value="White"></Setter>
<!--<Setter Property="BorderBrush" Value="{StaticResource myButtonColor}"></Setter>-->
</Style>
<!--<Style x:Key="LabelStyle" TargetType="{x:Type Label}">
<Setter Property="FontSize" Value="18"></Setter>
<Setter Property="Foreground" Value="{DynamicResource TextStyleColor1}"></Setter>
</Style>
<Style x:Key="ButtonStyle" TargetType="{x:Type Button}">
<Setter Property="FontSize" Value="18"></Setter>
<Setter Property="Foreground" Value="{DynamicResource TextStyleColor1}"></Setter>
</Style>
<Style x:Key="RadioButtonStyle" TargetType="{x:Type RadioButton}">
<Setter Property="FontSize" Value=""></Setter>
<Setter Property="Foreground" Value="{DynamicResource TextStyleColor1}"></Setter>
</Style>
<Style x:Key="GroupBoxStyle" TargetType="{x:Type GroupBox}">
<Setter Property="FontSize" Value="18"></Setter>
<Setter Property="Foreground" Value="{DynamicResource TextStyleColor1}"></Setter>
</Style>
<Style x:Key="CheckBoxStyle" TargetType="{x:Type CheckBox}">
<Setter Property="FontSize" Value="18"></Setter>
<Setter Property="Foreground" Value="{DynamicResource TextStyleColor1}"></Setter>
</Style>-->
</ResourceDictionary>