|
@@ -11,32 +11,69 @@ |
|
|
ShowMaxButton="False" |
|
|
ShowMaxButton="False" |
|
|
ShowMinButton="False" |
|
|
ShowMinButton="False" |
|
|
ShowTitle="True" |
|
|
ShowTitle="True" |
|
|
Topmost="True" |
|
|
|
|
|
WindowStartupLocation="CenterScreen" |
|
|
WindowStartupLocation="CenterScreen" |
|
|
WindowState="Maximized" |
|
|
WindowState="Maximized" |
|
|
mc:Ignorable="d"> |
|
|
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> |
|
|
<hc:Window.Background> |
|
|
<ImageBrush ImageSource="/HKResouces/背景.jpg" /> |
|
|
<ImageBrush ImageSource="/HKResouces/背景.jpg" /> |
|
|
</hc:Window.Background> |
|
|
</hc:Window.Background> |
|
|
<DataGrid |
|
|
<DataGrid |
|
|
AutoGenerateColumns="False" |
|
|
AutoGenerateColumns="False" |
|
|
Background="Transparent" |
|
|
Background="Transparent" |
|
|
ItemsSource="{Binding Result}"> |
|
|
|
|
|
<DataGridTextColumn |
|
|
|
|
|
Width="120" |
|
|
|
|
|
Binding="{Binding CardNo}" |
|
|
|
|
|
Header="卡号" /> |
|
|
|
|
|
<DataGridTextColumn |
|
|
|
|
|
Width="120" |
|
|
|
|
|
Binding="{Binding Money}" |
|
|
|
|
|
Header="金额" /> |
|
|
|
|
|
<DataGridTextColumn |
|
|
|
|
|
Width="120" |
|
|
|
|
|
Binding="{Binding Location}" |
|
|
|
|
|
Header="档口" /> |
|
|
|
|
|
<DataGridTextColumn |
|
|
|
|
|
Width="120" |
|
|
|
|
|
Binding="{Binding CreateTime}" |
|
|
|
|
|
Header="消费时间" /> |
|
|
|
|
|
|
|
|
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> |
|
|
</DataGrid> |
|
|
</hc:Window> |
|
|
</hc:Window> |