2020-03-17 11:07:40 +01:00
|
|
|
<Window x:Class="SafeExamBrowser.UserInterface.Desktop.Windows.ActionCenter" x:ClassModifier="internal"
|
2019-03-06 16:10:00 +01:00
|
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2020-03-16 18:29:06 +01:00
|
|
|
xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Desktop.Controls.ActionCenter"
|
2019-11-20 10:45:08 +01:00
|
|
|
mc:Ignorable="d" Title="ActionCenter" Height="1000" Width="400" Background="{DynamicResource BackgroundTransparentBrush}"
|
|
|
|
AllowsTransparency="True" WindowStyle="None" Topmost="True" ResizeMode="NoResize">
|
2019-03-08 11:43:52 +01:00
|
|
|
<Window.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2020-03-16 18:29:06 +01:00
|
|
|
<ResourceDictionary Source="../Templates/Colors.xaml" />
|
|
|
|
<ResourceDictionary Source="../Templates/ScrollViewers.xaml" />
|
2019-03-08 11:43:52 +01:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Window.Resources>
|
2019-03-06 16:10:00 +01:00
|
|
|
<Grid>
|
2019-03-08 11:43:52 +01:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<ScrollViewer Grid.Row="0" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto" Template="{StaticResource SmallBarScrollViewer}">
|
|
|
|
<StackPanel x:Name="ApplicationPanel" Orientation="Vertical" />
|
|
|
|
</ScrollViewer>
|
2019-03-15 11:38:59 +01:00
|
|
|
<UniformGrid x:Name="ControlPanel" Grid.Row="1" Columns="4" Margin="10">
|
2020-03-16 18:29:06 +01:00
|
|
|
<local:Clock x:Name="Clock" />
|
|
|
|
<local:QuitButton x:Name="QuitButton" />
|
2019-03-15 11:38:59 +01:00
|
|
|
</UniformGrid>
|
2019-03-06 16:10:00 +01:00
|
|
|
</Grid>
|
|
|
|
</Window>
|