80 lines
3.3 KiB
XML
80 lines
3.3 KiB
XML
<UserControl
|
|
x:Class="FATrace.WPLApp.Views.HeadView"
|
|
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:local="clr-namespace:FATrace.WPLApp.Views"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
d:DesignHeight="30"
|
|
d:DesignWidth="1920"
|
|
mc:Ignorable="d">
|
|
<Grid Background="#FF0288D1">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.Resources>
|
|
<Style x:Key="BoardStyle" TargetType="Border">
|
|
<Setter Property="Background" Value="Gray" />
|
|
<Setter Property="CornerRadius" Value="5" />
|
|
<Setter Property="Margin" Value="5,1" />
|
|
<Setter Property="Padding" Value="2" />
|
|
</Style>
|
|
<Style x:Key="StackPanelStyle" TargetType="StackPanel">
|
|
<Setter Property="HorizontalAlignment" Value="Left" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
<Setter Property="Orientation" Value="Horizontal" />
|
|
<Setter Property="Margin" Value="10,0" />
|
|
</Style>
|
|
<Style x:Key="TextBlockStyle" TargetType="TextBlock">
|
|
<Setter Property="HorizontalAlignment" Value="Left" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
<Setter Property="Foreground" Value="#404040" />
|
|
<Setter Property="FontSize" Value="18" />
|
|
</Style>
|
|
<Style x:Key="TextBlockIcon" TargetType="TextBlock">
|
|
<Setter Property="FontFamily" Value="/Assets/Fonts/#iconfont" />
|
|
<Setter Property="VerticalAlignment" Value="Center" />
|
|
<Setter Property="Foreground" Value="White" />
|
|
<Setter Property="FontSize" Value="18" />
|
|
<Setter Property="Margin" Value="5,0,5,0" />
|
|
</Style>
|
|
</Grid.Resources>
|
|
|
|
<Border>
|
|
<StackPanel Style="{StaticResource StackPanelStyle}">
|
|
<!--<svgc:SvgImage Source="pack://application:,,,/Resources/sample.svg" />-->
|
|
<!--<Image
|
|
Margin="5,2"
|
|
Source="/Assets/Images/GilicoLogo.png"
|
|
Stretch="Fill" />-->
|
|
<TextBlock
|
|
Foreground="White"
|
|
Style="{StaticResource TextBlockStyle}"
|
|
Text="格力高原料追溯管理系统" />
|
|
</StackPanel>
|
|
|
|
</Border>
|
|
|
|
<StackPanel
|
|
Grid.Column="2"
|
|
Margin="20,0"
|
|
HorizontalAlignment="Right"
|
|
Orientation="Horizontal">
|
|
<TextBlock
|
|
Margin="0,0,5,0"
|
|
VerticalAlignment="Center"
|
|
FontFamily="/Assets/Fonts/#iconfont"
|
|
FontSize="20"
|
|
Foreground="White"
|
|
Text="" />
|
|
<TextBlock
|
|
VerticalAlignment="Center"
|
|
FontSize="18"
|
|
Foreground="White"
|
|
Text="{Binding SysRunService.CurDateTime, StringFormat={}{0:MM-dd HH:mm}}" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</UserControl>
|