66 lines
2.4 KiB
XML
66 lines
2.4 KiB
XML
<Window
|
|
x:Class="RookieStation.ParcelAreaModule.Views.WpfShelfCards"
|
|
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:RookieStation"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="货架端牌"
|
|
Width="129"
|
|
Height="140"
|
|
MinWidth="240"
|
|
MinHeight="180"
|
|
ShowInTaskbar="False"
|
|
mc:Ignorable="d">
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
<Grid Margin="10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="0.5*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="1.2*" />
|
|
</Grid.ColumnDefinitions>
|
|
<GroupBox Margin="2" Header="起始编号">
|
|
<TextBox
|
|
x:Name="tbCurrentNum"
|
|
InputMethod.IsInputMethodEnabled="False"
|
|
PreviewTextInput="tb_PreviewTextInput"
|
|
Text="1"
|
|
TextAlignment="Center" />
|
|
</GroupBox>
|
|
<GroupBox
|
|
Grid.Row="0"
|
|
Grid.Column="1"
|
|
Margin="2"
|
|
Header="货架组合">
|
|
<ComboBox x:Name="cbGroup">
|
|
<ComboBoxItem Content="单个货架" IsSelected="True" />
|
|
<ComboBoxItem Content="双联货架" />
|
|
<ComboBoxItem Content="三联货架" />
|
|
</ComboBox>
|
|
</GroupBox>
|
|
|
|
<Button
|
|
x:Name="btnPlace"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
HorizontalAlignment="Center"
|
|
Click="btnConfirm_Click"
|
|
Content="布置" />
|
|
<Button
|
|
x:Name="btnNumber"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Click="btnConfirm_Click"
|
|
Content="编号" />
|
|
</Grid>
|
|
</Window> |