| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <prism:PrismApplication x:Class="LocalhostMES.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:prism="http://prismlibrary.com/"
- xmlns:local="clr-namespace:LocalhostMES.Views">
- <Application.Resources>
- <!-- 转换器 -->
- <local:ResultColorConverter x:Key="ResultColorConverter" />
- <Style TargetType="Button">
- <Setter Property="Background"
- Value="#007ACC" />
- <Setter Property="Foreground"
- Value="White" />
- <Setter Property="BorderThickness"
- Value="0" />
- <Setter Property="Padding"
- Value="10,5" />
- <Setter Property="Cursor"
- Value="Hand" />
- <Style.Triggers>
- <Trigger Property="IsMouseOver"
- Value="True">
- <Setter Property="Background"
- Value="#005A9E" />
- </Trigger>
- <Trigger Property="IsEnabled"
- Value="False">
- <Setter Property="Background"
- Value="#CCCCCC" />
- </Trigger>
- </Style.Triggers>
- </Style>
- <Style TargetType="TextBox">
- <Setter Property="BorderThickness"
- Value="1" />
- <Setter Property="BorderBrush"
- Value="#CCCCCC" />
- <Setter Property="Padding"
- Value="5" />
- </Style>
- <Style TargetType="DataGrid">
- <Setter Property="BorderThickness"
- Value="1" />
- <Setter Property="BorderBrush"
- Value="#CCCCCC" />
- <Setter Property="RowBackground"
- Value="White" />
- <Setter Property="AlternatingRowBackground"
- Value="#F5F5F5" />
- </Style>
- </Application.Resources>
- </prism:PrismApplication>
|