23 lines
1.4 KiB
XML
23 lines
1.4 KiB
XML
<UserControl x:Class="智能仓储WCS管理系统.Views.Controls.ScannerDisplayControl"
|
|
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:智能仓储WCS管理系统.Views.Controls"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="200" d:DesignWidth="150">
|
|
|
|
<Border Name="border" Grid.Column="0" Margin="5" BorderThickness="1" Background="LightSkyBlue" BorderBrush="Black" CornerRadius="3">
|
|
<StackPanel Margin="3">
|
|
<TextBlock HorizontalAlignment="Center">串口号</TextBlock>
|
|
<TextBlock Name="txtCom" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock HorizontalAlignment="Center">当前入库货架</TextBlock>
|
|
<TextBlock Name="txtCurrentShelf" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock HorizontalAlignment="Center">当前入库物料</TextBlock>
|
|
<TextBlock Name="txtCurrentMat" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock HorizontalAlignment="Center">当前入库人</TextBlock>
|
|
<TextBlock Name="txtInstoreUser" HorizontalAlignment="Center"></TextBlock>
|
|
</StackPanel>
|
|
</Border>
|
|
</UserControl>
|