|
- <UserControl x:Class="BPASmartClient.SCADAControl.CustomerControls.DateTimeUI"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- 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"
- xmlns:local="clr-namespace:BPASmartClient.SCADAControl.CustomerControls"
- mc:Ignorable="d"
- x:Name="main"
- d:DesignHeight="30" d:DesignWidth="100">
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/BPASmartClient.SCADAControl;component/Themes/Generic.xaml" />
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="20" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal">
- <TextBlock
- x:Name="time"
- FontFamily="../Fonts/#Quartz M"
- FontSize="16" Foreground="{Binding Foreground, ElementName=main}">
- 14:48:30
- </TextBlock>
- <Image Margin="10,0,0,0" Style="{DynamicResource timeImage}" />
- </StackPanel>
- <StackPanel Grid.Row="1" Orientation="Horizontal">
- <TextBlock
- x:Name="dateRL" Foreground="{Binding Foreground, ElementName=main}"
- FontFamily="../Fonts/#Quartz M"
- FontSize="10">
- 星期一
- </TextBlock>
-
- <TextBlock
- x:Name="date"
- Margin="10,0,0,0" Foreground="{Binding Foreground, ElementName=main}"
- FontFamily="../Fonts/#Quartz M"
- FontSize="10">
- 2021-11-13
- </TextBlock>
- </StackPanel>
- </Grid>
- </UserControl>
|