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.
72 lines
4.0 KiB
72 lines
4.0 KiB
2 years ago
|
<c:BWindow x:Class="BBWY.Client.Views.SealBox.SplitOtherWareWindow"
|
||
|
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:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls"
|
||
|
WindowStartupLocation="CenterScreen"
|
||
|
CloseButtonVisibility="Visible"
|
||
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
||
|
CloseButtonColor="{StaticResource WindowButtonColor}"
|
||
|
MinButtonVisibility="Collapsed"
|
||
|
MaxButtonVisibility="Collapsed"
|
||
|
Width="384" Height="254" ResizeMode="NoResize"
|
||
|
RightButtonGroupMargin="0,5,5,0">
|
||
|
<!--CloseButtonColor="{StaticResource WindowButtonColor}" -->
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="39"/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition Height="36"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
|
||
|
Background="{StaticResource Border.Background}">
|
||
|
<TextBlock Text="添加落仓" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||
|
</Border>
|
||
|
<Grid Grid.Row="1" Margin="100 20 100 20">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<StackPanel Grid.Row="0" Orientation="Horizontal">
|
||
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="待分配量:"/>
|
||
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="{Binding WaitCount}"/>
|
||
|
</StackPanel>
|
||
|
<StackPanel Grid.Row="1" Orientation="Horizontal">
|
||
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="仓库:"/>
|
||
|
<Grid Margin="5" Height="30" Width="150" Grid.Column="1" Grid.ColumnSpan="3">
|
||
|
<Rectangle Stroke="{StaticResource Border.Brush}" StrokeThickness="1"/>
|
||
|
<ComboBox Height="30" Width="150" SelectedItem="{Binding SelectWareType}" ItemsSource="{Binding WareTypeList}" BorderThickness="0" Margin="1" BorderBrush="Black">
|
||
|
<ComboBox.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>
|
||
|
</ComboBox.Resources>
|
||
|
</ComboBox>
|
||
|
|
||
|
</Grid>
|
||
|
|
||
|
</StackPanel>
|
||
|
<StackPanel Grid.Row="2" Orientation="Horizontal">
|
||
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="数量:"/>
|
||
|
<Border BorderBrush="{StaticResource Border.Brush}" Margin="5 0 0 0" Height="30" BorderThickness="1">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<c:BTextBox Height="30" Width="100" Text="{Binding Count}" BorderThickness="0 0 1 0"/>
|
||
|
<c:BButton Style="{StaticResource LinkButton}" Content="MAX" BorderThickness="0" Height="30" Width="50" Foreground="{StaticResource Border.Brush}" Click="BButton_Click_1"/>
|
||
|
|
||
|
</StackPanel>
|
||
|
</Border>
|
||
|
</StackPanel>
|
||
|
</Grid>
|
||
|
|
||
|
<Border Height="1" Background="{StaticResource Border.Brush}" Grid.Row="2" VerticalAlignment="Top"/>
|
||
|
<c:BButton Grid.Row="2" Content="确定" HorizontalAlignment="Right" Width="105" VerticalAlignment="Center" Height="40" Click="BButton_Click"
|
||
|
/>
|
||
|
|
||
|
</Grid>
|
||
|
</c:BWindow>
|