Files
wcs/货架标准上位机/Views/Controls/ScannerDisplayControl.xaml
hehaibing-1996 e89b64ea3a !提交代码
2024-04-15 18:43:28 +08:00

21 lines
1.2 KiB
XML

<UserControl x:Class="货架标准上位机.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:货架标准上位机.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>
</StackPanel>
</Border>
</UserControl>