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.
77 lines
3.9 KiB
77 lines
3.9 KiB
2 years ago
|
<c:BWindow x:Class="BBWY.Client.Views.PackTaskAbort.UpdateShelvesNumberWindow"
|
||
|
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"
|
||
|
mc:Ignorable="d"
|
||
|
Style="{StaticResource bwstyle}"
|
||
|
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls"
|
||
|
Height="219" Width="378"
|
||
|
xmlns:b="http://schemas.microsoft.com/xaml/behaviors"
|
||
|
xmlns:ctr="clr-namespace:BBWY.Client.Converters"
|
||
|
xmlns:cmodel="clr-namespace:BBWY.Client.Models"
|
||
|
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
||
|
CloseButtonVisibility="Visible"
|
||
|
CloseButtonColor="{StaticResource WindowButtonColor}"
|
||
|
MinButtonVisibility="Collapsed"
|
||
|
MaxButtonVisibility="Collapsed"
|
||
|
RightButtonGroupMargin="0,5,5,0">
|
||
|
<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>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="30"/>
|
||
|
<RowDefinition/>
|
||
|
<RowDefinition Height="40"/>
|
||
|
</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">
|
||
|
<StackPanel Orientation="Horizontal" Grid.Row="2" Margin="0 10 0 10" HorizontalAlignment="Center">
|
||
|
<TextBlock Text="摆放货架:" Style="{StaticResource middleTextBlock}"/>
|
||
|
<Border BorderBrush="{StaticResource Border.Brush}" BorderThickness="1" CornerRadius="1" Height="30">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<Label Content="货架编号" BorderThickness="0 0 0 0" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="70"/>
|
||
|
<Border Width="1" Background="{StaticResource Border.Brush}" HorizontalAlignment="Left"/>
|
||
|
<ComboBox Height="30" HorizontalAlignment="Stretch" ItemsSource="{Binding ShelvesNumberList}" Text="{Binding ShelvesNumber}" BorderThickness="0" Margin="1" />
|
||
|
|
||
|
|
||
|
</StackPanel>
|
||
|
</Border>
|
||
|
<Border BorderBrush="{StaticResource Border.Brush}" BorderThickness="1" CornerRadius="1" Height="30" Margin="10 0 0 0">
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<Label Content="货架层数" BorderThickness="0 0 0 0" VerticalContentAlignment="Center" HorizontalContentAlignment="Center" Width="70"/>
|
||
|
<Border Width="1" Background="{StaticResource Border.Brush}" HorizontalAlignment="Left"/>
|
||
|
<ComboBox Height="30" HorizontalAlignment="Stretch" ItemsSource="{Binding FloorNumberList}" Text="{Binding FloorNumber}" BorderThickness="0" Margin="1" />
|
||
|
|
||
|
|
||
|
</StackPanel>
|
||
|
</Border>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<Border Grid.Row="2" Height="1" VerticalAlignment="Top" BorderBrush="{StaticResource Border.Background}" BorderThickness="1"/>
|
||
|
<c:BButton Background="{StaticResource Button.Background}" Grid.Row="2" Content="提交" HorizontalAlignment="Right" Width="100" VerticalAlignment="Stretch" Click="BButton_Click"
|
||
|
/>
|
||
|
</Grid>
|
||
|
</c:BWindow>
|