You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
3.6 KiB
58 lines
3.6 KiB
|
2 years ago
|
<Page x:Class="formula_manage.View.ViewProcess"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
|
xmlns:local="clr-namespace:formula_manage.View"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
d:DesignHeight="150" d:DesignWidth="405"
|
||
|
|
Title="ViewProcess">
|
||
|
|
|
||
|
|
<Grid>
|
||
|
|
<DataGrid x:Name="edit" AlternationCount="2" IsReadOnly="False"
|
||
|
|
Margin="0,0,0,0" d:ItemsSource="{d:SampleData ItemCount=30}" AutoGenerateColumns="False" MinColumnWidth="30"
|
||
|
|
HorizontalGridLinesBrush="#FFC9C9C9" VerticalGridLinesBrush="#FFC9C9C9" GridLinesVisibility="All" BorderBrush="#CCCCCC"
|
||
|
|
BorderThickness="1,1,1,1" ColumnHeaderHeight="40" HorizontalContentAlignment="Right" Grid.ColumnSpan="2" CanUserReorderColumns="False" Background="White" SelectionMode="Single">
|
||
|
|
<DataGrid.RowStyle >
|
||
|
|
<Style TargetType="{x:Type DataGridRow}">
|
||
|
|
<Style.Triggers>
|
||
|
|
<Trigger Property="ItemsControl.AlternationIndex" Value="0">
|
||
|
|
<Setter Property="Background" Value="#FFFFFFFF" />
|
||
|
|
</Trigger>
|
||
|
|
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
|
||
|
|
<Setter Property="Background" Value="#FFF5F5F5" />
|
||
|
|
</Trigger>
|
||
|
|
<Trigger Property="IsMouseOver" Value="False">
|
||
|
|
</Trigger>
|
||
|
|
</Style.Triggers>
|
||
|
|
</Style>
|
||
|
|
</DataGrid.RowStyle>
|
||
|
|
<DataGrid.CellStyle>
|
||
|
|
<Style TargetType="DataGridCell">
|
||
|
|
<Setter Property="BorderThickness" Value="0"/>
|
||
|
|
<Setter Property="MinWidth" Value="20"/>
|
||
|
|
<Style.Triggers>
|
||
|
|
<Trigger Property="IsSelected" Value="True">
|
||
|
|
<Setter Property="Background" Value="#FFC0C0C0"/>
|
||
|
|
<Setter Property="BorderBrush" Value="#FFC0C0C0"/>
|
||
|
|
<Setter Property="Foreground" Value="#000000"/>
|
||
|
|
</Trigger>
|
||
|
|
</Style.Triggers>
|
||
|
|
</Style>
|
||
|
|
</DataGrid.CellStyle>
|
||
|
|
<DataGrid.Columns>
|
||
|
|
<!--列信息绑定-->
|
||
|
|
<DataGridTextColumn Header="顺序" Width="50" FontSize="15" MaxWidth="50" MinWidth="50" CanUserReorder="False" />
|
||
|
|
<DataGridTextColumn Header="原料代码" Width="200" FontSize="15" MaxWidth="400" MinWidth="100" CanUserReorder="False"/>
|
||
|
|
<DataGridTextColumn Header="目标饱和度(%)" Width="200" FontSize="15" MaxWidth="400" MinWidth="100" CanUserReorder="False"/>
|
||
|
|
<DataGridTextColumn Header="计算单位" Width="80" FontSize="15" MaxWidth="80" MinWidth="80" CanUserReorder="False"/>
|
||
|
|
<DataGridTextColumn Header="原料名称" Width="200" FontSize="15" MaxWidth="400" MinWidth="100" CanUserReorder="False"/>
|
||
|
|
<DataGridTextColumn Header="目标重量(g)" Width="200" FontSize="15" MaxWidth="400" MinWidth="100" CanUserReorder="False"/>
|
||
|
|
<DataGridTextColumn Header="单位" Width="80" FontSize="15" MaxWidth="80" MinWidth="80" CanUserReorder="False"/>
|
||
|
|
<DataGridTextColumn Header="备注" Width="400" FontSize="15" MinWidth="100" CanUserReorder="False"/>
|
||
|
|
</DataGrid.Columns>
|
||
|
|
</DataGrid>
|
||
|
|
|
||
|
|
</Grid>
|
||
|
|
</Page>
|