You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
2.3 KiB
51 lines
2.3 KiB
2 years ago
|
<c:BWindow x:Class="BBWY.Client.Views.BatchPurchase.PackSkuSplitCountAndStoreWindow"
|
||
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
xmlns:local="clr-namespace:BBWY.Client.Views.BatchPurchase"
|
||
|
mc:Ignorable="d"
|
||
|
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls"
|
||
|
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
|
||
|
Title="PackSkuSplitCountAndStoreWindow" Height="160" Width="250"
|
||
|
Style="{StaticResource bwstyle}"
|
||
|
MinButtonVisibility="Collapsed"
|
||
|
MaxButtonVisibility="Collapsed">
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="30"/>
|
||
|
<RowDefinition Height="5"/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition Height="40"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="70"/>
|
||
|
<ColumnDefinition/>
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
|
||
|
Background="{StaticResource Border.Background}"
|
||
|
Grid.ColumnSpan="2">
|
||
|
<TextBlock Text="装箱设置" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||
|
</Border>
|
||
|
|
||
|
<TextBlock Text="件数:" HorizontalAlignment="Right" VerticalAlignment="Center"
|
||
|
Grid.Row="2"/>
|
||
|
<c:BTextBox x:Name="txtQuantity" Grid.Column="1" Grid.Row="2" VerticalAlignment="Center"
|
||
|
Margin="5,0,10,0"/>
|
||
|
|
||
|
<TextBlock Text="落仓去向:" HorizontalAlignment="Right" VerticalAlignment="Center"
|
||
|
Grid.Row="3"/>
|
||
|
<ComboBox x:Name="cbx_stroeList" Grid.Row="3" Grid.Column="1" Height="30"
|
||
|
Margin="5,0,10,0"
|
||
|
DisplayMemberPath="Name"
|
||
|
VerticalContentAlignment="Center"/>
|
||
|
|
||
|
<c:BButton x:Name="btn_save" Content="保存" Width="80" HorizontalAlignment="Right" Grid.Row="4"
|
||
|
Margin="0,0,5,0" Click="btn_save_Click"
|
||
|
Grid.Column="1"/>
|
||
|
</Grid>
|
||
|
</c:BWindow>
|