16 lines
1.1 KiB
XML
16 lines
1.1 KiB
XML
<UserControl x:Class="SafeExamBrowser.UserInterface.Controls.DateTimeControl"
|
|
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:SafeExamBrowser.UserInterface.Controls"
|
|
mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="75">
|
|
<Grid ToolTip="{Binding Path=ToolTip}" Margin="5,0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*" />
|
|
<RowDefinition Height="1*" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock x:Name="TimeTextBlock" Grid.Row="0" Text="{Binding Path=Time}" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
<TextBlock x:Name="DateTextBlock" Grid.Row="1" Text="{Binding Path=Date}" Foreground="White" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
</Grid>
|
|
</UserControl>
|