|
|
@ -103,28 +103,28 @@ |
|
|
|
|
|
|
|
</Grid> |
|
|
|
|
|
|
|
<Grid Grid.Column="2" Grid.RowSpan="3" Margin="50 0 0 0" Background="{StaticResource Button.Background}" Width="420" |
|
|
|
<Grid Grid.Column="2" Grid.RowSpan="3" Margin="50 0 0 0" Background="{StaticResource Button.Background}" Width="450" |
|
|
|
Visibility="{Binding OrderCount,Converter={StaticResource objConverter},ConverterParameter=0:Collapsed:Visible}" |
|
|
|
> |
|
|
|
<Grid.ColumnDefinitions> |
|
|
|
<ColumnDefinition/> |
|
|
|
<ColumnDefinition/> |
|
|
|
<ColumnDefinition/> |
|
|
|
<ColumnDefinition/> |
|
|
|
<ColumnDefinition Width="90"/> |
|
|
|
</Grid.ColumnDefinitions> |
|
|
|
<StackPanel VerticalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0"> |
|
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Vertical" > |
|
|
|
<TextBlock Text="包装服务费" Foreground="White"/> |
|
|
|
<TextBlock Text="{Binding TotalPackDiscountFees,StringFormat='0.00'}" Foreground="White" FontSize="20" FontWeight="Bold"/> |
|
|
|
</StackPanel> |
|
|
|
<StackPanel VerticalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0" Grid.Column="1"> |
|
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0" Grid.Column="1"> |
|
|
|
<TextBlock Text="包装耗材费" Foreground="White"/> |
|
|
|
<TextBlock Text="{Binding TotalConsumableFees,StringFormat='0.00'}" Foreground="White" FontSize="20" FontWeight="Bold"/> |
|
|
|
</StackPanel> |
|
|
|
<StackPanel VerticalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0" Grid.Column="2"> |
|
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0" Grid.Column="2"> |
|
|
|
<TextBlock Text="总费用" Foreground="White"/> |
|
|
|
<TextBlock Text="{Binding TotalFees,StringFormat='0.00'}" Foreground="White" FontSize="20" FontWeight="Bold"/> |
|
|
|
</StackPanel> |
|
|
|
<StackPanel VerticalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0" Grid.Column="3"> |
|
|
|
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Vertical" Margin="10 0 0 0" Grid.Column="3"> |
|
|
|
<TextBlock Text="总任务量" Foreground="White"/> |
|
|
|
<TextBlock Text="{Binding OrderCount}" Foreground="White" FontSize="20" FontWeight="Bold"/> |
|
|
|
</StackPanel> |
|
|
|