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.
317 lines
22 KiB
317 lines
22 KiB
<c:BWindow x:Class="BBWY.Client.Views.FallWare.WareLSAcceptOrderWindow"
|
|
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.FallWare"
|
|
mc:Ignorable="d"
|
|
xmlns:c="clr-namespace:BBWY.Controls;assembly=BBWY.Controls"
|
|
Title="WareLSAcceptOrderWindow" Height="1123" Width="794"
|
|
WindowStartupLocation="CenterScreen"
|
|
CloseButtonVisibility="Visible"
|
|
CloseButtonColor="{StaticResource WindowButtonColor}"
|
|
MinButtonVisibility="Collapsed"
|
|
MaxButtonVisibility="Collapsed"
|
|
RightButtonGroupMargin="0,5,5,0"
|
|
|
|
>
|
|
<c:BWindow.Resources>
|
|
<ResourceDictionary>
|
|
<Style x:Key="fontSize14" TargetType="TextBlock">
|
|
<Setter Property="HorizontalAlignment" Value="Center"/>
|
|
<Setter Property="VerticalAlignment" Value="Center"/>
|
|
<Setter Property="FontSize" Value="14"/>
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</c:BWindow.Resources>
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="39"/>
|
|
<RowDefinition/>
|
|
<RowDefinition Height="0"/>
|
|
</Grid.RowDefinitions>
|
|
<Border BorderThickness="0,0,0,1" BorderBrush="{StaticResource MainMenu.BorderBrush}"
|
|
Background="{StaticResource Border.Background}">
|
|
<TextBlock Text="查看揽收单" FontSize="16" HorizontalAlignment="Left" Margin="10 0 0 0" VerticalAlignment="Center"/>
|
|
</Border>
|
|
<Grid Name="print_lsOrder" Grid.Row="1">
|
|
<Grid Margin="20" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="50"/>
|
|
<RowDefinition Height="210"/>
|
|
<RowDefinition Height="510"/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="200"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Background="#c00000">
|
|
<TextBlock Foreground="White" Text="到仓上门揽收交接单" FontSize="30" VerticalAlignment="Center" Margin="5 0 0 0"/>
|
|
</Grid>
|
|
<Image Source="/resources/images/jdwl.png" Stretch="Fill" Grid.Column="1"/>
|
|
</Grid>
|
|
<Grid Margin="0 10 0 10" Grid.Row="1" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="90"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="100"/>
|
|
<ColumnDefinition Width="160"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Background="#fce4d6" Grid.ColumnSpan="4">
|
|
<TextBlock Text="1. 任务信息" VerticalAlignment="Center" FontSize="16" Margin="5"/>
|
|
</Grid>
|
|
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="0" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="1" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="2" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="3" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="4" Grid.ColumnSpan="4"/>
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Left" Grid.Column="0" Grid.Row="1" Grid.RowSpan="4" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="0" Grid.Row="1" Grid.RowSpan="4" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="1" Grid.Row="1" Grid.RowSpan="4" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="2" Grid.Row="1" Grid.RowSpan="4" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="3" Grid.Row="1" Grid.RowSpan="4" />
|
|
<TextBlock Text="客户名称*" Grid.Row="1" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.CustomerName}" VerticalAlignment="Center" Grid.Row="1" Grid.Column="1" FontSize="14"/>
|
|
|
|
<TextBlock Text="提货地址" Grid.Row="2" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.AcceptAdress}" TextWrapping="Wrap" Grid.Row="2" Grid.Column="1" VerticalAlignment="Center" FontSize="14"/>
|
|
|
|
<TextBlock Text="客户联系人*" Grid.Row="3" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.CustomerUserName}" VerticalAlignment="Center" Grid.Row="3" Grid.Column="1" FontSize="14"/>
|
|
|
|
<TextBlock Text="客户电话*" Grid.Row="4" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.CustomerPhoneNumber}" VerticalAlignment="Center" Grid.Row="4" Grid.Column="1" FontSize="14"/>
|
|
|
|
<TextBlock Text="预约单号*" Grid.Column="2" Grid.Row="1" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding PrewOrder}" Grid.Column="3" Grid.Row="1" Style="{StaticResource fontSize14}" />
|
|
|
|
<TextBlock Text="揽收任务号*" Grid.Row="2" Grid.Column="2" Style="{StaticResource fontSize14}"/>
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.LSTaskNumber}" Grid.Row="2" Grid.Column="3" VerticalAlignment="Center" FontSize="14"/>
|
|
|
|
<TextBlock Text="始发TC**" Grid.Row="3" Grid.Column="2" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.StartTC}" Grid.Row="3" Grid.Column="3" VerticalAlignment="Center" FontSize="14"/>
|
|
|
|
|
|
<TextBlock Text="JD运输联系人*" Grid.Row="4" Grid.Column="2" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Text="{Binding GetWareLSAcceptOrderResponse.JDTransportUserName}" VerticalAlignment="Center" Grid.Row="4" Grid.Column="3" FontSize="14"/>
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="2" Margin="0 0 0 10">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="30"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="40"/>
|
|
<ColumnDefinition Width="140"/>
|
|
<ColumnDefinition Width="50"/>
|
|
<ColumnDefinition Width="75"/>
|
|
<ColumnDefinition Width="75"/>
|
|
<ColumnDefinition Width="75"/>
|
|
<ColumnDefinition Width="90"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Top" Grid.Row="1" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="1" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="2" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="3" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="4" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="5" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="6" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="7" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="8" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="9" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="10" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="11" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="12" Grid.ColumnSpan="8"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Margin="0 0 0 3" Grid.Row="12" Grid.ColumnSpan="8"/>
|
|
|
|
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Left" Grid.Column="0" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="0" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="1" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="2" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="3" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="4" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="5" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="6" Grid.Row="1" Grid.RowSpan="11" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="7" Grid.Row="1" Grid.RowSpan="11" />
|
|
|
|
|
|
<Grid Background="#fce4d6" Grid.ColumnSpan="8">
|
|
<TextBlock Text="2. 货物信息" VerticalAlignment="Center" FontSize="16" Margin="5"/>
|
|
</Grid>
|
|
<TextBlock Grid.Row="1" Text="序号" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="2" Text="1" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="3" Text="2" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="4" Text="3" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="5" Text="4" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="6" Text="5" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="7" Text="6" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="8" Text="7" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="9" Text="8" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="10" Text="9" Style="{StaticResource fontSize14}" />
|
|
<TextBlock Grid.Row="11" Text="10" Style="{StaticResource fontSize14}" />
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="1" Style="{StaticResource fontSize14}" Text="客户采购单号/JDV*"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="2" Style="{StaticResource fontSize14}" Text="箱数*"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="3" Style="{StaticResource fontSize14}" Text="目的城市*"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="4" Style="{StaticResource fontSize14}" Text="外箱标识*"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="5" Style="{StaticResource fontSize14}" Text="提货说明*"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="6" Style="{StaticResource fontSize14}" Text="TC收货箱数*"/>
|
|
<TextBlock Grid.Row="1" Grid.Column="7" Style="{StaticResource fontSize14}" Text="TC收货说明(外包装情况等)"/>
|
|
|
|
|
|
<TextBlock Grid.Row="12" Grid.Column="0" Grid.ColumnSpan="2" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="14" >
|
|
<Run Text="提货总箱数*:"/>
|
|
|
|
</TextBlock>
|
|
<TextBlock Grid.Row="12" Grid.Column="2" Style="{StaticResource fontSize14}" Text="{Binding TotalSealBoxCount}"/>
|
|
<TextBlock Grid.Row="12" Grid.Column="4" Grid.ColumnSpan="2" VerticalAlignment="Center" HorizontalAlignment="Right" FontSize="14" >
|
|
<Run Text="TC收货总箱数*:"/>
|
|
|
|
</TextBlock>
|
|
<TextBlock Grid.Row="12" Grid.Column="6" Style="{StaticResource fontSize14}" Text="{Binding TotalSealBoxCount}"/>
|
|
<ListBox x:Name="listbox_order"
|
|
Grid.Row="2" Grid.Column="1" Grid.ColumnSpan="7" Grid.RowSpan="10"
|
|
ItemsSource="{Binding GetWareLSOrderPurchases}"
|
|
ItemContainerStyle="{StaticResource NoBgListBoxItemStyle}"
|
|
BorderBrush="{StaticResource Border.Brush}"
|
|
BorderThickness="0"
|
|
Foreground="{StaticResource Text.Color}">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<Grid Width="{Binding ActualWidth,ElementName=listbox_order,Converter={StaticResource widthConverter},ConverterParameter=-0}"
|
|
MinHeight="40">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="140"/>
|
|
<ColumnDefinition Width="50"/>
|
|
<ColumnDefinition Width="75"/>
|
|
<ColumnDefinition Width="75"/>
|
|
<ColumnDefinition Width="75"/>
|
|
<ColumnDefinition Width="90"/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="{Binding PurchaseOrder}" Grid.Column="0"/>
|
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="{Binding SealBoxCount}" Grid.Column="1"/>
|
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="{Binding WareCity}" Grid.Column="2"/>
|
|
<TextBlock Style="{StaticResource middleTextBlock}" Text="{Binding TCAcceptBoxCount}" Grid.Column="5"/>
|
|
</Grid>
|
|
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
|
|
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="3" >
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="40"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition Height="30"/>
|
|
<RowDefinition />
|
|
<RowDefinition Height="30"/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="350"/>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition Width="180"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="1" Grid.ColumnSpan="4"/>
|
|
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="3" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="4" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="5" Grid.ColumnSpan="4"/>
|
|
<Border Height="1" Background="#c00000" VerticalAlignment="Bottom" Grid.Row="6" Grid.ColumnSpan="4"/>
|
|
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Left" Grid.Column="0" Grid.Row="6" Grid.RowSpan="1" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Left" Grid.Column="0" Grid.Row="2" Grid.RowSpan="3" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="0" Grid.Row="2" Grid.RowSpan="2" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="1" Grid.Row="2" Grid.RowSpan="3" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="0" Grid.Row="6" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="1" Grid.Row="6" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="2" Grid.Row="2" Grid.RowSpan="3" />
|
|
<Border Width="1" Background="#c00000" HorizontalAlignment="Right" Grid.Column="2" Grid.Row="6" Grid.RowSpan="1" />
|
|
|
|
<Grid Background="#fce4d6" Grid.ColumnSpan="3">
|
|
<TextBlock Text="1. 签字确认" VerticalAlignment="Center" FontSize="16" Margin="5"/>
|
|
</Grid>
|
|
<TextBlock Text="客户确认" FontWeight="Bold" Grid.Row="1" VerticalAlignment="Center" FontSize="16" Margin="5"/>
|
|
<TextBlock Text="揽收司机确认" FontWeight="Bold" Grid.Row="1" Grid.Column="1" VerticalAlignment="Center" FontSize="16" Margin="5"/>
|
|
<TextBlock Text="TC收货确认" FontWeight="Bold" Grid.Row="1" Grid.Column="2" VerticalAlignment="Center" FontSize="16" Margin="5"/>
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" Grid.Row="2" >
|
|
<Run Text="发货人签字*:"/>
|
|
<Run Text="{Binding GetWareLSAcceptOrderResponse.CustomerName}"/>
|
|
</TextBlock>
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" Grid.Row="3" >
|
|
<Run Text="发货人电话:"/>
|
|
<Run Text="{Binding GetWareLSAcceptOrderResponse.CustomerPhoneNumber}"/>
|
|
</TextBlock>
|
|
<Grid Grid.Row="2" Grid.Column="1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition/>
|
|
<ColumnDefinition/>
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" Text="车牌号*:"/>
|
|
<TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" Grid.Column="1" Text="车型*:"/>
|
|
</Grid>
|
|
<TextBlock Grid.Row="3" Grid.Column="1" VerticalAlignment="Center" HorizontalAlignment="Left" Text="司机签字*:"/>
|
|
<TextBlock Grid.Row="2" Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Left" Text="收货人签字*:"/>
|
|
<TextBlock Grid.Row="3" Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Left" Text="联系方式:"/>
|
|
<TextBlock Grid.Row="4" Text="签字日期时间*:" Margin="0 5 0 0"/>
|
|
<TextBlock Grid.Row="4" Text="签字日期时间*:" Margin="0 5 0 0" Grid.Column="2"/>
|
|
<TextBlock Grid.Row="5" Text="客户备注:" VerticalAlignment="Center"/>
|
|
<TextBlock Grid.Row="5" Text="司机备注:" VerticalAlignment="Center" Grid.Column="1"/>
|
|
<TextBlock Grid.Row="5" Text="TC备注:" VerticalAlignment="Center" Grid.Column="2"/>
|
|
<TextBlock Grid.Row="6" Text="确认以上采购单号及对应交接箱数、目的城市、对应外箱标识(如有)信息准确。"
|
|
FontSize="8" VerticalAlignment="Bottom"/>
|
|
<TextBlock Grid.Row="6" Text="确认以上采购单号、对应箱数与实际揽收货物相符。"
|
|
Grid.Column="1" FontSize="8" VerticalAlignment="Bottom"/>
|
|
<TextBlock Grid.Row="6" Text="确认以上采购单号、对应箱数与实收货物相符。"
|
|
Grid.Column="2" FontSize="8" VerticalAlignment="Bottom"/>
|
|
|
|
<TextBlock Grid.Row="7" Grid.ColumnSpan="3" HorizontalAlignment="Center">
|
|
<Run Text="本次揽收任务交接单共"/>
|
|
<Run Text="{Binding NowPageIndex}"/>
|
|
<Run Text="页,此为第"/>
|
|
<Run Text="{Binding TotalPageIndex}"/>
|
|
<Run Text="页"/>
|
|
</TextBlock>
|
|
</Grid>
|
|
|
|
</Grid>
|
|
</Grid>
|
|
<!--<c:BButton Grid.Row="2" Content="保存" HorizontalAlignment="Right" Width="105" VerticalAlignment="Center" Height="40" Click="BButton_Click"
|
|
Name="btn_save" />-->
|
|
</Grid>
|
|
|
|
</c:BWindow>
|
|
|