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.

80 lines
3.2 KiB
Plaintext

2 years ago
<UserControl
x:Class="XGL.Views.LanJu_Material"
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">
<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="250" Header="规格型号" />
<DataGridTextColumn Width="250" Header="数量" />
<DataGridTextColumn Width="250" Header="备货单单号" />
<DataGridTextColumn Width="*" Header="是否准备完成" />
</DataGrid.Columns>
</DataGrid>
</Grid>
</Canvas>
</Viewbox>
</UserControl>