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.

90 lines
3.5 KiB
XML

<UserControl
x:Class="XGL.Views.LanJu_Flow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:XGL.Views"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Width="1920"
Height="800"
mc:Ignorable="d">
<Viewbox Stretch="Fill">
<Canvas
Width="1920"
Height="800"
Background="#F2F3F5">
<Grid
Width="1920"
Height="800"
Margin="0">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Label
Grid.Row="0"
Width="175"
Height="37"
Margin="25,20,0,25"
HorizontalAlignment="Left"
VerticalAlignment="Center">
<TextBlock
FontSize="22"
FontWeight="Bold"
Text="工艺路线" />
</Label>
<Button
Grid.Row="0"
Width="90"
Height="44"
Margin="0,20,25,25"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Background="#2B7EE6"
Click="Back_Click">
<TextBlock
FontSize="20"
Foreground="White"
Text="返回" />
</Button>
<DataGrid
Grid.Row="1"
Width="1870"
Height="612"
Margin="25,0"
AutoGenerateColumns="False">
<DataGrid.ColumnHeaderStyle>
<Style TargetType="DataGridColumnHeader">
<Setter Property="HorizontalContentAlignment" Value="Center" />
<Setter Property="Height" Value="48" />
<Setter Property="FontSize" Value="24" />
<Setter Property="Foreground" Value="White" />
<Setter Property="Background" Value="#2B7EE6" />
</Style>
</DataGrid.ColumnHeaderStyle>
<DataGrid.Columns>
<DataGridTextColumn Width="200" Header="序号" />
<DataGridTextColumn Width="250" Header="工序编码" />
<DataGridTextColumn Width="250" Header="工序名称" />
<DataGridTextColumn Width="200" Header="标准工时" />
<DataGridTextColumn Width="250" Header="物料编码" />
<DataGridTextColumn Width="250" Header="物料名称" />
<DataGridTextColumn Width="*" Header="关键工序" />
</DataGrid.Columns>
</DataGrid>
<ContentControl
x:Name="Window2"
Grid.Row="0"
Grid.RowSpan="5"
Grid.Column="0"
Grid.ColumnSpan="9"
Width="1920"
Height="800" />
</Grid>
</Canvas>
</Viewbox>
</UserControl>