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.
63 lines
3.0 KiB
63 lines
3.0 KiB
<c:BWindow x:Class="BBWYB.Client.Views.Order.EditPrice"
|
|
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:BBWYB.Client.Views.Order"
|
|
xmlns:c="clr-namespace:SJ.Controls;assembly=SJ.Controls"
|
|
mc:Ignorable="d"
|
|
Title="修改价格" Height="400" Width="600"
|
|
Style="{StaticResource bwstyle}"
|
|
MinButtonVisibility="Collapsed"
|
|
MaxButtonVisibility="Collapsed"
|
|
DataContext="{Binding EditPrice,Source={StaticResource Locator}}"
|
|
SnapsToDevicePixels="True"
|
|
UseLayoutRounding="True">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="60"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
|
|
Background="{StaticResource Border.Background}">
|
|
<TextBlock Text="改价" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
</Border>
|
|
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="5,0">
|
|
<TextBlock Text="订单采购运费" VerticalAlignment="Center"/>
|
|
<c:BTextBox Width="100" Margin="5,0"
|
|
Text="{Binding FreightAmount}"/>
|
|
<c:BButton Content="等比均分" Width="80"/>
|
|
</StackPanel>
|
|
|
|
<Border BorderBrush="{StaticResource Border.Brush}"
|
|
BorderThickness="1,1,1,0"
|
|
Grid.Row="2"
|
|
Background="{StaticResource Border.Background}"
|
|
Margin="5,0">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="300"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Text="店铺商品信息" Style="{StaticResource middleTextBlock}"/>
|
|
<TextBlock Text="原单价" Style="{StaticResource middleTextBlock}" Grid.Column="1"/>
|
|
<TextBlock Text="现单价" Style="{StaticResource middleTextBlock}" Grid.Column="2"/>
|
|
<TextBlock Text="总运费" Style="{StaticResource middleTextBlock}" Grid.Column="3"/>
|
|
|
|
<Border Width="1" HorizontalAlignment="Right" Background="{StaticResource Border.Brush}"/>
|
|
<Border Width="1" HorizontalAlignment="Right" Background="{StaticResource Border.Brush}" Grid.Column="1"/>
|
|
<Border Width="1" HorizontalAlignment="Right" Background="{StaticResource Border.Brush}" Grid.Column="2"/>
|
|
</Grid>
|
|
</Border>
|
|
|
|
|
|
<c:BButton Content="保存" Grid.Row="4" HorizontalAlignment="Right" Margin="0,0,5,0" Width="80"/>
|
|
</Grid>
|
|
</c:BWindow>
|
|
|