add-添加数据重传
parent
1eca0624bf
commit
adb761d912
@ -0,0 +1,99 @@
|
||||
<Window x:Class="SlnMesnac.RfidUpload.UI.ReUploadRecordWindow"
|
||||
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:SlnMesnac.RfidUpload.UI"
|
||||
mc:Ignorable="d" WindowState="Maximized"
|
||||
xmlns:cvt1="clr-namespace:SlnMesnac.RfidUpload.UI.converter"
|
||||
Title="历史记录及数据重传" Height="768" Width="1024">
|
||||
|
||||
<Window.Resources>
|
||||
<cvt1:StatusConverter x:Key="StatusConverter"/>
|
||||
</Window.Resources>
|
||||
|
||||
<Grid>
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="1*"/>
|
||||
<RowDefinition Height="0.8*"/>
|
||||
<RowDefinition Height="7*"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Border Grid.Row="0" BorderBrush="Gray" BorderThickness="0,0,0,2" CornerRadius="0" >
|
||||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||||
<TextBlock Text="封发计划:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0"/>
|
||||
<TextBox Text="{Binding FfjhNo}" FontSize="16" Grid.Row="1" Width="180" Height="30" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||||
<TextBox.Template>
|
||||
<ControlTemplate TargetType="TextBox">
|
||||
<Border Background="#EBF4FD" BorderBrush="White" BorderThickness="1" CornerRadius="5">
|
||||
<ScrollViewer x:Name="PART_ContentHost" />
|
||||
</Border>
|
||||
</ControlTemplate>
|
||||
</TextBox.Template>
|
||||
</TextBox>
|
||||
|
||||
<!--<TextBlock Text="调入局:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0"/>
|
||||
<TextBox Text="{Binding DRJ}" FontSize="16" Grid.Row="1" Width="180" Height="30" VerticalContentAlignment="Center" HorizontalAlignment="Center" Padding="5">
|
||||
<TextBox.Template>
|
||||
<ControlTemplate TargetType="TextBox">
|
||||
<Border Background="#EBF4FD" BorderBrush="White" BorderThickness="1" CornerRadius="5">
|
||||
<ScrollViewer x:Name="PART_ContentHost" />
|
||||
</Border>
|
||||
</ControlTemplate>
|
||||
</TextBox.Template>
|
||||
</TextBox>-->
|
||||
|
||||
<!--<TextBlock Text="时间:" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="20,0,0,0"/>
|
||||
--><!-- 开始时间选择器 --><!--
|
||||
<DatePicker x:Name="StartDatePicker" Width="150" Margin="10,0,0,0" VerticalAlignment="Center" SelectedDate="{Binding StartDate, Mode=TwoWay}" />
|
||||
<TextBlock Text="至" FontSize="16" FontWeight="Black" Foreground="#006699" Margin="10,0,0,0"/>
|
||||
--><!-- 结束时间选择器 --><!--
|
||||
<DatePicker x:Name="EndDatePicker" Width="150" Margin="10,0,0,0" VerticalAlignment="Center" SelectedDate="{Binding EndDate, Mode=TwoWay}" />-->
|
||||
|
||||
|
||||
</StackPanel>
|
||||
</Border>
|
||||
<Grid Grid.Row="1" >
|
||||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left" VerticalAlignment="Center">
|
||||
<!-- 查询按钮 -->
|
||||
<Button Content="查询" Command="{Binding QueryCommand}" Style="{StaticResource BUTTON_AGREE}" Width="80" Height="30" Background="#007DFA" BorderBrush="#007DFA" Margin="10,0,10,0"/>
|
||||
|
||||
<Label Content="提示信息 :" FontSize="20" FontWeight="Black" Foreground="#00CC33" Margin="50,0,0,0"/>
|
||||
<Label Content="{Binding TipMsg}" FontSize="20" FontWeight="Black" Foreground="#00CC33" Margin="5,0,10,0"/>
|
||||
</StackPanel>
|
||||
|
||||
</Grid>
|
||||
<DataGrid Grid.Row="2" Name="DG" ItemsSource="{Binding UploadRecordItems}" Background="Transparent"
|
||||
FontSize="15" ColumnHeaderHeight="35"
|
||||
RowHeight="40" AutoGenerateColumns="False" RowHeaderWidth="0"
|
||||
GridLinesVisibility="None" ScrollViewer.HorizontalScrollBarVisibility="Visible"
|
||||
ScrollViewer.VerticalScrollBarVisibility="Visible" BorderThickness="0" CanUserAddRows="False"
|
||||
Foreground="#0288d1" >
|
||||
<!--resourceStyle 399行修改选中字体颜色-->
|
||||
<DataGrid.Columns>
|
||||
<DataGridTextColumn Binding="{Binding FfjhNo}" Header="封发计划编号" Width="150*" IsReadOnly="True" />
|
||||
<DataGridTextColumn Binding="{Binding StationOrgCode}" Header="机构代码" Width="150*" IsReadOnly="True" />
|
||||
<DataGridTextColumn Binding="{Binding StationOrgName}" Header="机构名称" Width="150*" IsReadOnly="True" />
|
||||
<DataGridTextColumn Binding="{Binding IsSuccess,Converter={StaticResource StatusConverter}}" Header="结果" Width="150*" IsReadOnly="True" />
|
||||
<DataGridTextColumn Binding="{Binding UploadTime,StringFormat=\{0:MM月dd日 HH:mm.ss.ffff\}}" Header="日期" Width="150*" IsReadOnly="True"/>
|
||||
<DataGridTemplateColumn Header="操作" Width="220">
|
||||
<DataGridTemplateColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<!--<Button Content="编辑" Command="{Binding DataContext.CabinetUpdateCommand, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" CommandParameter="{Binding}" Style="{StaticResource BUTTON_AGREE}" FontSize="14" Width="80" Height="30" Background="#009999" BorderBrush="#FF36B5C1" VerticalAlignment="Center" HorizontalAlignment="Center"/>-->
|
||||
|
||||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||
<Button Content="重传" Command="{Binding DataContext.ExecuteCommand,
|
||||
RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"
|
||||
CommandParameter="{Binding FfjhNo}" Style="{StaticResource BUTTON_AGREE}" FontSize="14"
|
||||
Width="120" Height="30" Background="#009999" BorderBrush="#FF36B5C1" VerticalAlignment="Center"
|
||||
HorizontalAlignment="Center" Margin="0,0,5,0"/>
|
||||
|
||||
</StackPanel>
|
||||
</DataTemplate>
|
||||
</DataGridTemplateColumn.CellTemplate>
|
||||
</DataGridTemplateColumn>
|
||||
</DataGrid.Columns>
|
||||
</DataGrid>
|
||||
|
||||
</Grid>
|
||||
</Window>
|
Loading…
Reference in New Issue