2020-03-16 18:29:06 +01:00
|
|
|
<UserControl x:Class="SafeExamBrowser.UserInterface.Desktop.Controls.ActionCenter.ApplicationControl" x:ClassModifier="internal"
|
2017-08-22 10:29:00 +02:00
|
|
|
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"
|
2019-01-11 15:32:47 +01:00
|
|
|
xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Desktop.Controls"
|
2019-03-08 11:43:52 +01:00
|
|
|
mc:Ignorable="d" d:DesignHeight="250" d:DesignWidth="500">
|
2017-08-22 15:47:42 +02:00
|
|
|
<UserControl.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2020-03-16 18:29:06 +01:00
|
|
|
<ResourceDictionary Source="../../Templates/Buttons.xaml" />
|
|
|
|
<ResourceDictionary Source="../../Templates/Colors.xaml" />
|
|
|
|
<ResourceDictionary Source="../../Templates/ScrollViewers.xaml" />
|
2017-08-22 15:47:42 +02:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</UserControl.Resources>
|
2017-08-22 10:29:00 +02:00
|
|
|
<Grid>
|
2019-03-08 11:43:52 +01:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
2019-11-20 10:45:08 +01:00
|
|
|
<TextBlock Grid.Row="0" x:Name="ApplicationName" Background="{StaticResource BackgroundTransparentEmphasisBrush}" FontWeight="Bold" Padding="5" TextAlignment="Center" />
|
2019-11-13 10:11:11 +01:00
|
|
|
<ContentControl Grid.Row="1" x:Name="ApplicationButton" FontWeight="Bold" />
|
2019-11-28 17:22:04 +01:00
|
|
|
<StackPanel Grid.Row="2" x:Name="WindowPanel" Background="{StaticResource BackgroundTransparentEmphasisBrush}" Orientation="Vertical" />
|
2017-08-22 10:29:00 +02:00
|
|
|
</Grid>
|
|
|
|
</UserControl>
|