2025-01-06 09:40:32 +08:00
|
|
|
<UserControl x:Class="DM_Weight.Views.CheckSelfOrderWindow"
|
|
|
|
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" />
|
2025-05-13 16:56:35 +08:00
|
|
|
<Style.Triggers>
|
2025-01-06 09:40:32 +08:00
|
|
|
<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" />
|
2025-05-13 16:56:35 +08:00
|
|
|
<Binding Path="CurrentDrawerNo"/>
|
2025-01-06 09:40:32 +08:00
|
|
|
</MultiBinding>
|
|
|
|
</DataTrigger.Binding>
|
|
|
|
<Setter Property="Background" Value="#d1e7f5" />
|
|
|
|
<Setter Property="BorderBrush" Value="#d1e7f5" />
|
|
|
|
</DataTrigger>
|
2025-05-13 16:56:35 +08:00
|
|
|
</Style.Triggers>
|
2025-01-06 09:40:32 +08:00
|
|
|
</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,ConverterParameter=1}" CommandParameter="1" IsEnabled="{Binding Button1Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="1" Grid.Column="0" Width="120" Content="二号手术间" Background="{Binding Button2Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="2" IsEnabled="{Binding Button2Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="2" Grid.Column="0" Width="120" Content="三号手术间" Background="{Binding Button3Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="3" IsEnabled="{Binding Button3Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="3" Grid.Column="0" Width="120" Content="四号手术间" Background="{Binding Button4Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="4" IsEnabled="{Binding Button4Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="4" Grid.Column="0" Width="120" Content="五号手术间" Background="{Binding Button5Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="5" IsEnabled="{Binding Button5Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="5" Grid.Column="0" Width="120" Content="六号手术间" Background="{Binding Button6Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="6" IsEnabled="{Binding Button6Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="6" Grid.Column="0" Width="120" Content="七号手术间" Background="{Binding Button7Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="7" IsEnabled="{Binding Button7Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="7" Grid.Column="0" Width="120" Content="八号手术间" Background="{Binding Button8Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="8" IsEnabled="{Binding Button8Enable}"/>
|
|
|
|
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="8" Grid.Column="0" Width="120" Content="九号手术间" Background="{Binding Button9Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="9" IsEnabled="{Binding Button9Enable}"/>
|
|
|
|
<Button Margin="0 0 3 0" Grid.Row="0" Grid.Column="1" Width="120" Content="十号手术间" Background="{Binding Button10Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="10" IsEnabled="{Binding Button10Enable}"/>
|
|
|
|
|
|
|
|
<Button Grid.Row="1" Grid.Column="1" Width="120" Content="十一号手术间" Background="{Binding Button11Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="11" IsEnabled="{Binding Button11Enable}"/>
|
|
|
|
<Button Grid.Row="2" Grid.Column="1" Width="120" Content="十二号手术间" Background="{Binding Button12Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="12" IsEnabled="{Binding Button12Enable}"/>
|
|
|
|
<Button Grid.Row="3" Grid.Column="1" Width="120" Content="十三号手术间" Background="{Binding Button13Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="13" IsEnabled="{Binding Button13Enable}"/>
|
|
|
|
<Button Grid.Row="4" Grid.Column="1" Width="120" Content="十四号手术间" Background="{Binding Button14Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="14" IsEnabled="{Binding Button14Enable}"/>
|
|
|
|
<Button Grid.Row="5" Grid.Column="1" Width="120" Content="十五号手术间" Background="{Binding Button15Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="15" IsEnabled="{Binding Button15Enable}"/>
|
|
|
|
<Button Grid.Row="6" Grid.Column="1" Width="120" Content="十六号手术间" Background="{Binding Button16Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="16" IsEnabled="{Binding Button16Enable}"/>
|
|
|
|
<Button Grid.Row="7" Grid.Column="1" Width="120" Content="十七号手术间" Background="{Binding Button17Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="17" IsEnabled="{Binding Button17Enable}"/>
|
|
|
|
<Button Grid.Row="8" Grid.Column="1" Width="120" Content="十八号手术间" Background="{Binding Button18Color}" Command="{Binding UpdateDrawerNo}" CommandParameter="18" IsEnabled="{Binding Button18Enable}"/>
|
|
|
|
<!--<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="2">
|
|
|
|
<Grid.ColumnDefinitions>
|
2025-04-22 17:32:18 +08:00
|
|
|
<ColumnDefinition Width="3*" />
|
|
|
|
<ColumnDefinition Width="4*" />
|
2025-01-06 09:40:32 +08:00
|
|
|
<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" Content="{Binding SelfContent}" Command="{Binding OpenBoxDelegate}" CommandParameter="0" Visibility="Collapsed"
|
|
|
|
IsEnabled="{Binding SelfEnable}"
|
|
|
|
materialDesign:ButtonProgressAssist.IsIndicatorVisible="{Binding SelfStatus, Converter={StaticResource StatusConverter}, ConverterParameter=opearBtnLoading}"
|
|
|
|
materialDesign:ButtonProgressAssist.IsIndeterminate="{Binding SelfStatus, Converter={StaticResource StatusConverter}, ConverterParameter=opearBtnLoading}"
|
|
|
|
Style="{StaticResource MaterialDesignOutlinedLightButton}"/>-->
|
|
|
|
|
|
|
|
<Button
|
|
|
|
Margin="0 0 6 0"
|
|
|
|
VerticalAlignment="Center" Command="{Binding CheckOrder}"
|
|
|
|
Content="确认"
|
|
|
|
Style="{StaticResource MaterialDesignOutlinedLightButton}">
|
|
|
|
</Button>
|
|
|
|
<Button
|
|
|
|
Margin="2"
|
|
|
|
Style="{StaticResource MaterialDesignOutlinedLightButton}"
|
|
|
|
Content="取消"
|
|
|
|
Command="{Binding CancleTake}" Cursor="Hand" />
|
|
|
|
<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">-->
|
|
|
|
<ListView Grid.Row="1" Grid.Column="0" Margin="0"
|
|
|
|
ItemsSource="{Binding OrderInfoList, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}"
|
|
|
|
SelectedItem="{Binding selectOrderInfo}"
|
|
|
|
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="单号"/>
|
2025-01-10 11:21:38 +08:00
|
|
|
<GridViewColumn Width="180"
|
2025-01-06 09:40:32 +08:00
|
|
|
DisplayMemberBinding="{Binding _OrderDetail.DrugInfo.DrugName}"
|
|
|
|
Header="药品名称"/>
|
2025-05-23 13:20:20 +08:00
|
|
|
<GridViewColumn Width="130"
|
2025-01-06 09:40:32 +08:00
|
|
|
DisplayMemberBinding="{Binding _OrderDetail.SetManuNo}"
|
|
|
|
Header="药品批次"/>
|
2025-05-23 13:20:20 +08:00
|
|
|
<GridViewColumn Width="30"
|
2025-01-06 09:40:32 +08:00
|
|
|
DisplayMemberBinding="{Binding _OrderDetail.Quantity}"
|
2025-01-10 11:21:38 +08:00
|
|
|
Header="数量"/>
|
|
|
|
<GridViewColumn Width="80"
|
|
|
|
DisplayMemberBinding="{Binding _OrderDetail.surgicalResidual.UseDoseInfo}"
|
|
|
|
Header="使用量"/>
|
|
|
|
<GridViewColumn Width="80"
|
|
|
|
DisplayMemberBinding="{Binding _OrderDetail.surgicalResidual.ResidualDoseInfo}"
|
|
|
|
Header="剩余量"/>
|
|
|
|
<GridViewColumn Width="160"
|
2025-05-13 16:56:35 +08:00
|
|
|
DisplayMemberBinding="{Binding _OrderDetail.surgicalResidual.DisposalTime}"
|
2025-01-10 11:21:38 +08:00
|
|
|
Header="余液处置时间"/>
|
2025-01-06 09:40:32 +08:00
|
|
|
|
2025-01-10 11:21:38 +08:00
|
|
|
<!--<GridViewColumn Width="180" Header="药品名称">
|
2025-01-06 09:40:32 +08:00
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="DrugInfo.DrugName" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
|
|
|
<GridViewColumn Width="80" Header="药品批次">
|
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="SetManuNo" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
2025-01-10 11:21:38 +08:00
|
|
|
<GridViewColumn Width="80" Header="药品效期">
|
2025-01-06 09:40:32 +08:00
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="SetEffDate" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
2025-01-10 11:21:38 +08:00
|
|
|
</GridViewColumn>
|
2025-01-06 09:40:32 +08:00
|
|
|
<GridViewColumn Width="42" Header="数量">
|
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="Quantity" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
|
|
|
<GridViewColumn Width="80">
|
|
|
|
<GridViewColumn.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="使用量" TextWrapping="Wrap"/>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.HeaderTemplate>
|
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="surgicalResidual.UseDoseInfo" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
|
|
|
<GridViewColumn Width="80">
|
|
|
|
<GridViewColumn.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="剩余量" TextWrapping="Wrap"/>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.HeaderTemplate>
|
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="surgicalResidual.ResidualDoseInfo" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
|
|
|
</GridViewColumn>
|
|
|
|
<GridViewColumn Width="160">
|
|
|
|
<GridViewColumn.HeaderTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<TextBlock Text="余液处置时间" TextWrapping="Wrap"/>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.HeaderTemplate>
|
|
|
|
<GridViewColumn.CellTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<ListBox ItemsSource="{Binding OrderDetailList}" DisplayMemberPath="surgicalResidual.DisposalTime" materialDesign:ListBoxItemAssist.ShowSelection="False"></ListBox>
|
|
|
|
</DataTemplate>
|
|
|
|
</GridViewColumn.CellTemplate>
|
2025-01-10 11:21:38 +08:00
|
|
|
</GridViewColumn>-->
|
2025-01-06 09:40:32 +08:00
|
|
|
</GridView>
|
|
|
|
</ListView.View>
|
|
|
|
</ListView>
|
|
|
|
<!--</Grid>-->
|
|
|
|
<!--<Grid Grid.Column="1" Grid.Row="1" Margin="0 0 0 0" HorizontalAlignment="Right">-->
|
|
|
|
<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 16 0 15">
|
|
|
|
<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>
|
|
|
|
<!--</Grid>-->
|
|
|
|
|
|
|
|
<pagination:Pagination Grid.Row="2" Grid.ColumnSpan="2"
|
|
|
|
CurrentPage="{Binding PageNum}"
|
|
|
|
PageSize="{Binding PageSize}"
|
|
|
|
TotalPages="{Binding TotalCount}"
|
|
|
|
InfoTextIsEnabel="True"
|
|
|
|
/>
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|