18 lines
1.1 KiB
XML
18 lines
1.1 KiB
XML
<UserControl x:Class="货架标准上位机.Views.Controls.ShelfStatusControl"
|
|
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="25">
|
|
<TextBlock Name="txtShelfCode" FontSize="20" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock Name="txtCurrentMode" FontSize="15" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock Name="txtOrderNumber" FontSize="15" HorizontalAlignment="Center"></TextBlock>
|
|
</StackPanel>
|
|
</Border>
|
|
</UserControl>
|