mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-24 13:34:13 +08:00
49 lines
2.3 KiB
XML
49 lines
2.3 KiB
XML
<Styles xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Design.PreviewWith>
|
|
<Border Padding="20">
|
|
<!-- Add Controls for Previewer Here -->
|
|
</Border>
|
|
</Design.PreviewWith>
|
|
<Styles.Resources>
|
|
|
|
<SolidColorBrush x:Key="DataGridColumnHeaderForegroundBrush" Color="#FFFFFF" />
|
|
<SolidColorBrush x:Key="DataGridColumnHeaderBackgroundBrush" Color="#2D77F3" Opacity="0.2" />
|
|
<SolidColorBrush x:Key="DataGridColumnHeaderHoveredBackgroundColor" Color="#2D77F3" Opacity="0.2" />
|
|
<SolidColorBrush x:Key="DataGridColumnHeaderPressedBackgroundColor" Color="#2D77F3" Opacity="0.2" />
|
|
|
|
<SolidColorBrush x:Key="DataGridRowSelectedUnfocusedBackgroundBrush" Color="{StaticResource Blue9}" Opacity="0.2" />
|
|
<SolidColorBrush x:Key="DataGridRowSelectedHoveredUnfocusedBackgroundBrush" Color="{StaticResource Blue9}" Opacity="0.2" />
|
|
<SolidColorBrush x:Key="DataGridGridLinesBrush" Color="#2D77F3" Opacity="0.3" />
|
|
|
|
</Styles.Resources>
|
|
|
|
<Style Selector="DataGrid">
|
|
<Setter Property="Background" Value="#0d1540" />
|
|
<Setter Property="BorderThickness" Value="1" />
|
|
<Setter Property="BorderBrush" Value="{StaticResource DataGridGridLinesBrush}" />
|
|
<Setter Property="GridLinesVisibility" Value="All" />
|
|
<Setter Property="ColumnHeaderHeight" Value="30" />
|
|
</Style>
|
|
|
|
<Style Selector="DataGridCell">
|
|
<Setter Property="FontFamily" Value="{DynamicResource Font-Family}" />
|
|
<Setter Property="FontSize" Value="14" />
|
|
</Style>
|
|
|
|
<Style Selector="DataGrid:focus DataGridCell:current /template/ Grid#FocusVisual">
|
|
<Setter Property="IsVisible" Value="False" />
|
|
</Style>
|
|
|
|
<Style Selector="DataGridCell > TextBlock#CellTextBlock">
|
|
<Setter Property="Foreground" Value="{StaticResource Light}" />
|
|
<Setter Property="FontFamily" Value="{StaticResource Font-Family}" />
|
|
<Setter Property="FontSize" Value="14" />
|
|
</Style>
|
|
|
|
<Style Selector="DataGridRow:pointerover /template/ Rectangle#BackgroundRectangle">
|
|
<Setter Property="Fill" Value="{DynamicResource Blue1}" />
|
|
<Setter Property="Opacity" Value="0.4" />
|
|
</Style>
|
|
</Styles>
|