234 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
		
		
			
		
	
	
			234 lines
		
	
	
		
			15 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
| 
								 | 
							
								<UserControl x:Class="DM_Weight.Views.CheckOrderNewWindowNew"
							 | 
						||
| 
								 | 
							
								             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
							 | 
						||
| 
								 | 
							
								             xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" 
							 | 
						||
| 
								 | 
							
								             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
							 | 
						||
| 
								 | 
							
								             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
							 | 
						||
| 
								 | 
							
								             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
							 | 
						||
| 
								 | 
							
								             prism:ViewModelLocator.AutoWireViewModel="True"
							 | 
						||
| 
								 | 
							
								             xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
							 | 
						||
| 
								 | 
							
								             xmlns:pagination="clr-namespace:DM_Weight.Components.pagination"
							 | 
						||
| 
								 | 
							
								             xmlns:local="clr-namespace:DM_Weight.Views"
							 | 
						||
| 
								 | 
							
								             mc:Ignorable="d" 
							 | 
						||
| 
								 | 
							
								             xmlns:convert="clr-namespace:DM_Weight.Converter"
							 | 
						||
| 
								 | 
							
								             xmlns:prism="http://prismlibrary.com/">
							 | 
						||
| 
								 | 
							
								    <UserControl.Resources>
							 | 
						||
| 
								 | 
							
								        <convert:OrderStatusConverter x:Key="OrderStatusConverter" />
							 | 
						||
| 
								 | 
							
								        <convert:DrawerSelectConverter x:Key="DrawerSelectConverter" />
							 | 
						||
| 
								 | 
							
								        <convert:BoxNumConverter x:Key="BoxNumConverter" />
							 | 
						||
| 
								 | 
							
								        <convert:StatusConverter x:Key="StatusConverter" />
							 | 
						||
| 
								 | 
							
								        <Style x:Key="st" TargetType="GridViewColumnHeader">
							 | 
						||
| 
								 | 
							
								            <Style.Setters>
							 | 
						||
| 
								 | 
							
								                <Setter Property="Height">
							 | 
						||
| 
								 | 
							
								                    <Setter.Value>55</Setter.Value>
							 | 
						||
| 
								 | 
							
								                </Setter>
							 | 
						||
| 
								 | 
							
								                <Setter Property="Background">
							 | 
						||
| 
								 | 
							
								                    <Setter.Value>#31ccec</Setter.Value>
							 | 
						||
| 
								 | 
							
								                </Setter>
							 | 
						||
| 
								 | 
							
								                <Setter Property="Foreground">
							 | 
						||
| 
								 | 
							
								                    <Setter.Value>white</Setter.Value>
							 | 
						||
| 
								 | 
							
								                </Setter>
							 | 
						||
| 
								 | 
							
								            </Style.Setters>
							 | 
						||
| 
								 | 
							
								        </Style>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    </UserControl.Resources>
							 | 
						||
| 
								 | 
							
								    <Grid>
							 | 
						||
| 
								 | 
							
								        <Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								            <ColumnDefinition Width="Auto"/>
							 | 
						||
| 
								 | 
							
								            <ColumnDefinition Width="*"/>
							 | 
						||
| 
								 | 
							
								        </Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								        <Grid  Margin="6" Grid.Column="0">
							 | 
						||
| 
								 | 
							
								            <Grid.Resources>
							 | 
						||
| 
								 | 
							
								                <Style TargetType="{x:Type Button}" BasedOn="{StaticResource MaterialDesignPaperLightButton}">
							 | 
						||
| 
								 | 
							
								                    <Setter Property="Foreground" Value="#00a0ea" />
							 | 
						||
| 
								 | 
							
								                    <Setter Property="BorderBrush" Value="#00a0ea" />
							 | 
						||
| 
								 | 
							
								                    <Style.Triggers>
							 | 
						||
| 
								 | 
							
								                        <Trigger Property="IsMouseOver" Value="True">
							 | 
						||
| 
								 | 
							
								                            <Setter Property="Background" Value="#d1e7f5" />
							 | 
						||
| 
								 | 
							
								                            <Setter Property="BorderBrush" Value="#d1e7f5" />
							 | 
						||
| 
								 | 
							
								                        </Trigger>
							 | 
						||
| 
								 | 
							
								                        <DataTrigger Value="True">
							 | 
						||
| 
								 | 
							
								                            <DataTrigger.Binding>
							 | 
						||
| 
								 | 
							
								                                <MultiBinding Converter="{StaticResource DrawerSelectConverter}">
							 | 
						||
| 
								 | 
							
								                                    <Binding RelativeSource="{ RelativeSource Mode=Self }" Path="Content" />
							 | 
						||
| 
								 | 
							
								                                    <Binding Path="DrawerNo" />
							 | 
						||
| 
								 | 
							
								                                </MultiBinding>
							 | 
						||
| 
								 | 
							
								                            </DataTrigger.Binding>
							 | 
						||
| 
								 | 
							
								                            <Setter Property="Background" Value="#d1e7f5" />
							 | 
						||
| 
								 | 
							
								                            <Setter Property="BorderBrush" Value="#d1e7f5" />
							 | 
						||
| 
								 | 
							
								                        </DataTrigger>
							 | 
						||
| 
								 | 
							
								                    </Style.Triggers>
							 | 
						||
| 
								 | 
							
								                </Style>
							 | 
						||
| 
								 | 
							
								            </Grid.Resources>
							 | 
						||
| 
								 | 
							
								            <Grid.RowDefinitions>
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <RowDefinition />
							 | 
						||
| 
								 | 
							
								                <!--<RowDefinition />-->
							 | 
						||
| 
								 | 
							
								            </Grid.RowDefinitions>
							 | 
						||
| 
								 | 
							
								            <Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								                <ColumnDefinition />
							 | 
						||
| 
								 | 
							
								                <ColumnDefinition />
							 | 
						||
| 
								 | 
							
								            </Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="0" Grid.Column="0" Width="120" Content="一号手术间" Background="{Binding Button1Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="0" IsEnabled="{Binding IsEnabled1}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="1" Grid.Column="0" Width="120" Content="二号手术间" Background="{Binding Button2Color}"  Command="{Binding UpdateDrawerNo}" CommandParameter="1" IsEnabled="{Binding IsEnabled2}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="2" Grid.Column="0" Width="120" Content="三号手术间"  Background="{Binding Button3Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="2" IsEnabled="{Binding IsEnabled3}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="3" Grid.Column="0" Width="120" Content="四号手术间"  Background="{Binding Button4Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="3" IsEnabled="{Binding IsEnabled4}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="4" Grid.Column="0" Width="120" Content="五号手术间"  Background="{Binding Button5Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="4" IsEnabled="{Binding IsEnabled5}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="5" Grid.Column="0" Width="120" Content="六号手术间"  Background="{Binding Button6Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="5" IsEnabled="{Binding IsEnabled6}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="6" Grid.Column="0" Width="120" Content="七号手术间"  Background="{Binding Button7Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="6" IsEnabled="{Binding IsEnabled7}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="7" Grid.Column="0" Width="120" Content="八号手术间"  Background="{Binding Button8Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="7" IsEnabled="{Binding IsEnabled8}"/>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="8" Grid.Column="0" Width="120" Content="九号手术间"  Background="{Binding Button9Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="8"   IsEnabled="{Binding IsEnabled9}"/>
							 | 
						||
| 
								 | 
							
								            <Button Margin="0 0  3 0" Grid.Row="0" Grid.Column="1" Width="120" Content="十号手术间" Background="{Binding Button10Color}"  Command="{Binding UpdateDrawerNo}" CommandParameter="9" IsEnabled="{Binding IsEnabled10}"/>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="1" Grid.Column="1" Width="120" Content="十一号手术间"  Background="{Binding Button11Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="10" IsEnabled="{Binding IsEnabled11}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="2" Grid.Column="1" Width="120" Content="十二号手术间"  Background="{Binding Button12Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="11" IsEnabled="{Binding IsEnabled12}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="3" Grid.Column="1" Width="120" Content="十三号手术间"  Background="{Binding Button13Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="12" IsEnabled="{Binding IsEnabled13}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="4" Grid.Column="1" Width="120" Content="十四号手术间"  Background="{Binding Button14Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="13" IsEnabled="{Binding IsEnabled14}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="5" Grid.Column="1" Width="120" Content="十五号手术间"  Background="{Binding Button15Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="14" IsEnabled="{Binding IsEnabled15}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="6" Grid.Column="1" Width="120" Content="十六号手术间"  Background="{Binding Button16Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="15" IsEnabled="{Binding IsEnabled16}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="7" Grid.Column="1" Width="120" Content="十七号手术间"  Background="{Binding Button17Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="16" IsEnabled="{Binding IsEnabled17}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="8" Grid.Column="1" Width="120" Content="十八号手术间"  Background="{Binding Button18Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="17" IsEnabled="{Binding IsEnabled18}"/>
							 | 
						||
| 
								 | 
							
								            <!--<Button Grid.Row="8" Grid.Column="1" Width="120" Content="19号药箱" Command="{Binding UpdateDrawerNo}" CommandParameter="19" IsEnabled="{Binding DrawerNo, Converter={StaticResource BoxNumConverter}, ConverterParameter=19}"/>
							 | 
						||
| 
								 | 
							
								            <Button Grid.Row="9" Grid.Column="1" Width="120" Content="20号药箱" Command="{Binding UpdateDrawerNo}" CommandParameter="20" IsEnabled="{Binding DrawerNo, Converter={StaticResource BoxNumConverter}, ConverterParameter=20}"/>-->
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								        </Grid>
							 | 
						||
| 
								 | 
							
								        <Grid Grid.Column="1" Margin="6">
							 | 
						||
| 
								 | 
							
								            <Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								                <ColumnDefinition Width="7*"/>
							 | 
						||
| 
								 | 
							
								                <ColumnDefinition Width="3*"/>
							 | 
						||
| 
								 | 
							
								            </Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								            <Grid.RowDefinitions>
							 | 
						||
| 
								 | 
							
								                <RowDefinition Height="Auto"/>
							 | 
						||
| 
								 | 
							
								                <RowDefinition Height="Auto"/>
							 | 
						||
| 
								 | 
							
								                <RowDefinition Height="Auto"/>
							 | 
						||
| 
								 | 
							
								            </Grid.RowDefinitions>
							 | 
						||
| 
								 | 
							
								            <Grid Margin="0 6 0 6" Grid.Row="0" Grid.ColumnSpan="3">
							 | 
						||
| 
								 | 
							
								                <Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								                    <ColumnDefinition Width="3*" />
							 | 
						||
| 
								 | 
							
								                    <ColumnDefinition Width="4*" />
							 | 
						||
| 
								 | 
							
								                    <ColumnDefinition Width="2*" />
							 | 
						||
| 
								 | 
							
								                </Grid.ColumnDefinitions>
							 | 
						||
| 
								 | 
							
								                <DatePicker
							 | 
						||
| 
								 | 
							
								                Grid.Column="0"
							 | 
						||
| 
								 | 
							
								                SelectedDate="{Binding OrderDate, StringFormat=yyyy-MM-dd, TargetNullValue='',UpdateSourceTrigger=PropertyChanged}"
							 | 
						||
| 
								 | 
							
								                SelectedDateFormat="Short"
							 | 
						||
| 
								 | 
							
								                Margin="6 0 0 0"
							 | 
						||
| 
								 | 
							
								                materialDesign:HintAssist.Hint="开单日期"
							 | 
						||
| 
								 | 
							
								                Style="{StaticResource MaterialDesignOutlinedDatePicker}" />
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                <StackPanel Grid.Column="2" Orientation="Horizontal" HorizontalAlignment="Right">
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								                    <Button
							 | 
						||
| 
								 | 
							
								                        Margin="0 0 6 0"
							 | 
						||
| 
								 | 
							
								                        VerticalAlignment="Center" Command="{Binding CheckOrder}"
							 | 
						||
| 
								 | 
							
								                        Content="确认"
							 | 
						||
| 
								 | 
							
								                        Style="{StaticResource MaterialDesignOutlinedLightButton}">
							 | 
						||
| 
								 | 
							
								                    </Button>
							 | 
						||
| 
								 | 
							
								                    <Button
							 | 
						||
| 
								 | 
							
								                        Margin="0 0 6 0"
							 | 
						||
| 
								 | 
							
								                        VerticalAlignment="Center"
							 | 
						||
| 
								 | 
							
								                        Style="{StaticResource MaterialDesignOutlinedLightButton}"
							 | 
						||
| 
								 | 
							
								                        ToolTip="刷新" Command="{Binding Query}">
							 | 
						||
| 
								 | 
							
								                        <materialDesign:PackIcon Kind="Refresh" />
							 | 
						||
| 
								 | 
							
								                    </Button>
							 | 
						||
| 
								 | 
							
								                </StackPanel>
							 | 
						||
| 
								 | 
							
								            </Grid>
							 | 
						||
| 
								 | 
							
								            <!--<Grid Grid.Row="1" Grid.Column="0" Margin="0 0 -100 0">-->
							 | 
						||
| 
								 | 
							
								            <!--<ScrollViewer VerticalScrollBarVisibility="Auto">-->
							 | 
						||
| 
								 | 
							
								                <ListView Grid.Row="1" Grid.Column="0"  Margin="0" 
							 | 
						||
| 
								 | 
							
								            ItemsSource="{Binding SurgicalResidualList, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
							 | 
						||
| 
								 | 
							
								            SelectedItem="{Binding surgicalResidual}"
							 | 
						||
| 
								 | 
							
								            materialDesign:ListViewAssist.HeaderRowBackground="#31ccec"
							 | 
						||
| 
								 | 
							
								            materialDesign:ListViewAssist.ListViewItemPadding="0 15 0 0">
							 | 
						||
| 
								 | 
							
								                    <ListView.Resources>
							 | 
						||
| 
								 | 
							
								                        <Style TargetType="{x:Type GridViewColumnHeader}" BasedOn="{StaticResource {x:Type GridViewColumnHeader}}">
							 | 
						||
| 
								 | 
							
								                            <Setter Property="Foreground" Value="White" />
							 | 
						||
| 
								 | 
							
								                        </Style>
							 | 
						||
| 
								 | 
							
								                    </ListView.Resources>
							 | 
						||
| 
								 | 
							
								                    <i:Interaction.Triggers>
							 | 
						||
| 
								 | 
							
								                        <i:EventTrigger EventName="SelectionChanged">
							 | 
						||
| 
								 | 
							
								                            <i:InvokeCommandAction Command="{Binding RowSelected}" />
							 | 
						||
| 
								 | 
							
								                        </i:EventTrigger>
							 | 
						||
| 
								 | 
							
								                    </i:Interaction.Triggers>
							 | 
						||
| 
								 | 
							
								                    <ListView.View>
							 | 
						||
| 
								 | 
							
								                        <GridView ColumnHeaderContainerStyle="{StaticResource st}">
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn Header="选择" Width="30">
							 | 
						||
| 
								 | 
							
								                                <GridViewColumn.CellTemplate>
							 | 
						||
| 
								 | 
							
								                                    <DataTemplate>
							 | 
						||
| 
								 | 
							
								                                        <CheckBox IsChecked="{Binding ItemIsChecked}" />
							 | 
						||
| 
								 | 
							
								                                    </DataTemplate>
							 | 
						||
| 
								 | 
							
								                                </GridViewColumn.CellTemplate>
							 | 
						||
| 
								 | 
							
								                            </GridViewColumn>
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn Width="80"
							 | 
						||
| 
								 | 
							
								                        Header="姓名"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding PName}" />
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn Width="30"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding Sex}"
							 | 
						||
| 
								 | 
							
								                        Header="性别"/>
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn  Width="150"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding OrderNo}"
							 | 
						||
| 
								 | 
							
								                        Header="单号"/>
							 | 
						||
| 
								 | 
							
								                            <!--<GridViewColumn Width="240"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding DeptName}"
							 | 
						||
| 
								 | 
							
								                        Header="科室"/>-->
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn Width="180"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding DrugInfo.DrugName}"
							 | 
						||
| 
								 | 
							
								                        Header="药品名称"/>
							 | 
						||
| 
								 | 
							
								                        <GridViewColumn Width="130"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding ManuNo}"
							 | 
						||
| 
								 | 
							
								                        Header="药品批次"/>
							 | 
						||
| 
								 | 
							
								                        <GridViewColumn Width="30"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding Quantity}"
							 | 
						||
| 
								 | 
							
								                        Header="数量"/>
							 | 
						||
| 
								 | 
							
								                        <GridViewColumn Width="80"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding UseDoseInfo}"
							 | 
						||
| 
								 | 
							
								                        Header="使用量"/>
							 | 
						||
| 
								 | 
							
								                        <GridViewColumn Width="80"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding ResidualDoseInfo}"
							 | 
						||
| 
								 | 
							
								                        Header="剩余量"/>
							 | 
						||
| 
								 | 
							
								                        <GridViewColumn Width="160"
							 | 
						||
| 
								 | 
							
								                        DisplayMemberBinding="{Binding DisposalTime}"
							 | 
						||
| 
								 | 
							
								                        Header="余液处置时间"/>
							 | 
						||
| 
								 | 
							
								                        </GridView>
							 | 
						||
| 
								 | 
							
								                    </ListView.View>
							 | 
						||
| 
								 | 
							
								                </ListView>
							 | 
						||
| 
								 | 
							
								                <ListView Grid.Column="1" Grid.Row="1" Margin="0 0 3 0"
							 | 
						||
| 
								 | 
							
								                          ItemsSource="{Binding TotalDrugList,UpdateSourceTrigger=PropertyChanged,Mode=TwoWay}"
							 | 
						||
| 
								 | 
							
								                          materialDesign:ListViewAssist.HeaderRowBackground="#31ccec"
							 | 
						||
| 
								 | 
							
								                          materialDesign:ListViewAssist.ListViewItemPadding="0 18 0 0">
							 | 
						||
| 
								 | 
							
								                    <ListView.Resources>
							 | 
						||
| 
								 | 
							
								                        <Style TargetType="{x:Type GridViewColumnHeader}" BasedOn="{StaticResource {x:Type GridViewColumnHeader}}">
							 | 
						||
| 
								 | 
							
								                            <Setter Property="Foreground" Value="White" />
							 | 
						||
| 
								 | 
							
								                        </Style>
							 | 
						||
| 
								 | 
							
								                    </ListView.Resources>
							 | 
						||
| 
								 | 
							
								                    <ListView.View>
							 | 
						||
| 
								 | 
							
								                        <GridView ColumnHeaderContainerStyle="{StaticResource st}">
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn Width="180"
							 | 
						||
| 
								 | 
							
								                                DisplayMemberBinding="{Binding DrugName}"
							 | 
						||
| 
								 | 
							
								                                Header="药品名称"/>
							 | 
						||
| 
								 | 
							
								                            <GridViewColumn Width="40"
							 | 
						||
| 
								 | 
							
								                                DisplayMemberBinding="{Binding TotalCount}"
							 | 
						||
| 
								 | 
							
								                                Header="合计"/>
							 | 
						||
| 
								 | 
							
								                        </GridView>
							 | 
						||
| 
								 | 
							
								                    </ListView.View>
							 | 
						||
| 
								 | 
							
								                </ListView>
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								            <pagination:Pagination Grid.Row="2" Grid.ColumnSpan="2"
							 | 
						||
| 
								 | 
							
								                                   CurrentPage="{Binding PageNum}"
							 | 
						||
| 
								 | 
							
								                                   PageSize="{Binding PageSize}"
							 | 
						||
| 
								 | 
							
								                                   TotalPages="{Binding TotalCount}"
							 | 
						||
| 
								 | 
							
								                                   InfoTextIsEnabel="True"
							 | 
						||
| 
								 | 
							
								                                />
							 | 
						||
| 
								 | 
							
								        </Grid>
							 | 
						||
| 
								 | 
							
								    </Grid>
							 | 
						||
| 
								 | 
							
								</UserControl>
							 | 
						||
| 
								 | 
							
								
							 |