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.
97 lines
4.1 KiB
XML
97 lines
4.1 KiB
XML
<UserControl
|
|
x:Class="XGL.Views.LanJu_DeviceItems"
|
|
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="330"
|
|
mc:Ignorable="d">
|
|
<Viewbox Stretch="Fill">
|
|
<Canvas
|
|
Width="1920"
|
|
Height="330"
|
|
Background="#F2F3F5">
|
|
<Grid
|
|
Width="1920"
|
|
Height="330"
|
|
Margin="0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center">
|
|
<StackPanel
|
|
Width="1870"
|
|
Height="60"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Top"
|
|
Background="White"
|
|
Orientation="Horizontal">
|
|
<TextBlock
|
|
Width="90"
|
|
Margin="5,10"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
FontSize="22"
|
|
Text="出库单:" />
|
|
<TextBox
|
|
Width="380"
|
|
Height="40"
|
|
VerticalContentAlignment="Center"
|
|
FontSize="18"
|
|
Foreground="Gray"
|
|
Text="请输入内容" />
|
|
<Button
|
|
Width="150"
|
|
Height="45"
|
|
Margin="75,5"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Background="#2B7EE6">
|
|
<TextBlock
|
|
FontSize="20"
|
|
Foreground="White"
|
|
Text="卸料" />
|
|
</Button>
|
|
<Button
|
|
Width="150"
|
|
Height="45"
|
|
Margin="45,5"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Background="#2B7EE6">
|
|
<TextBlock
|
|
FontSize="20"
|
|
Foreground="White"
|
|
Text="修改数量" />
|
|
</Button>
|
|
</StackPanel>
|
|
<DataGrid
|
|
Width="1870"
|
|
Height="220"
|
|
HorizontalAlignment="Center"
|
|
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="200" Header="时间" />
|
|
<DataGridTextColumn Width="200" Header="时长" />
|
|
<DataGridTextColumn Width="250" Header="工单/SFC" />
|
|
<DataGridTextColumn Width="250" Header="暂停描述" />
|
|
<DataGridTextColumn Width="250" Header="恢复描述" />
|
|
<DataGridTextColumn Width="*" Header="人员" />
|
|
</DataGrid.Columns>
|
|
</DataGrid>
|
|
</Grid>
|
|
</Canvas>
|
|
</Viewbox>
|
|
</UserControl>
|