2020-03-17 11:07:40 +01:00
|
|
|
<Window x:Class="SafeExamBrowser.UserInterface.Desktop.Windows.Taskview" x:ClassModifier="internal"
|
2019-11-14 14:03:43 +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"
|
|
|
|
xmlns:local="clr-namespace:SafeExamBrowser.UserInterface.Desktop"
|
2019-11-20 10:45:08 +01:00
|
|
|
mc:Ignorable="d" AllowsTransparency="True" Background="{DynamicResource BackgroundTransparentBrush}" BorderBrush="DodgerBlue" BorderThickness="1"
|
2019-12-05 11:54:43 +01:00
|
|
|
Title="Taskview" Topmost="True" Height="450" SizeToContent="WidthAndHeight" Width="800" WindowStartupLocation="CenterScreen" WindowStyle="None">
|
2019-11-20 10:45:08 +01:00
|
|
|
<Window.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2020-03-16 18:29:06 +01:00
|
|
|
<ResourceDictionary Source="../Templates/Colors.xaml" />
|
2019-11-20 10:45:08 +01:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Window.Resources>
|
2019-11-14 14:03:43 +01:00
|
|
|
<Grid>
|
2019-11-15 16:00:03 +01:00
|
|
|
<StackPanel Name="Rows" Margin="10" Orientation="Vertical" />
|
2019-11-14 14:03:43 +01:00
|
|
|
</Grid>
|
|
|
|
</Window>
|