|
- <hc:Window
- x:Class="HKCardOUT.Views.RootView"
- 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:hc="https://handyorg.github.io/handycontrol"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:viewModels="clr-namespace:HKCardOUT.ViewModels"
- Title="海科智慧一卡通平台"
- d:DataContext="{d:DesignInstance Type=viewModels:RootViewModel}"
- ShowMaxButton="False"
- ShowMinButton="False"
- ShowTitle="True"
- WindowStartupLocation="CenterScreen"
- WindowState="Maximized"
- mc:Ignorable="d">
- <hc:Window.Resources>
- <Style x:Key="SaleLogHeader" TargetType="DataGridColumnHeader">
- <Setter Property="FontSize" Value="18" />
- <Setter Property="Background" Value="Transparent" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="HorizontalAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- <Style x:Key="CenterAlignmentStyle" TargetType="TextBlock">
- <Setter Property="TextAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="FontSize" Value="15" />
- <Setter Property="Background" Value="Transparent" />
- </Style>
- </hc:Window.Resources>
- <hc:Window.Background>
- <ImageBrush ImageSource="/HKResouces/背景.jpg" />
- </hc:Window.Background>
- <DataGrid
- AutoGenerateColumns="False"
- Background="Transparent"
- IsReadOnly="True"
- ItemsSource="{Binding Result}"
- Style="{StaticResource DataGridBaseStyle}">
- <DataGrid.RowStyle>
- <Style BasedOn="{StaticResource DataGridRowStyle}" TargetType="DataGridRow">
- <Setter Property="Background" Value="Transparent" />
- <Style.Triggers>
- <Trigger Property="UIElement.IsMouseOver" Value="true">
- <Setter Property="Background" Value="Transparent" />
- </Trigger>
- </Style.Triggers>
- </Style>
- </DataGrid.RowStyle>
- <DataGrid.Columns>
- <DataGridTextColumn
- Width="230"
- Binding="{Binding CardNo}"
- ElementStyle="{StaticResource CenterAlignmentStyle}"
- Header="卡号"
- HeaderStyle="{StaticResource SaleLogHeader}" />
- <DataGridTextColumn
- Width="230"
- Binding="{Binding Money}"
- ElementStyle="{StaticResource CenterAlignmentStyle}"
- Header="金额"
- HeaderStyle="{StaticResource SaleLogHeader}" />
- <DataGridTextColumn
- Width="230"
- Binding="{Binding Location}"
- ElementStyle="{StaticResource CenterAlignmentStyle}"
- Header="档口"
- HeaderStyle="{StaticResource SaleLogHeader}" />
- <DataGridTextColumn
- Width="230"
- Binding="{Binding CreateTime, StringFormat={}{0:yyyy-MM-dd HH:mm:ss}}"
- ElementStyle="{StaticResource CenterAlignmentStyle}"
- Header="消费时间"
- HeaderStyle="{StaticResource SaleLogHeader}" />
- </DataGrid.Columns>
- </DataGrid>
- </hc:Window>
|