2020-03-16 18:29:06 +01:00
|
|
|
<UserControl x:Class="SafeExamBrowser.UserInterface.Desktop.Controls.Taskbar.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"
|
2017-08-22 10:29:00 +02:00
|
|
|
xmlns:s="clr-namespace:System;assembly=mscorlib"
|
|
|
|
mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="50">
|
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-12-06 14:23:07 +01:00
|
|
|
<Popup x:Name="WindowPopup" IsOpen="False" Placement="Custom" PlacementTarget="{Binding ElementName=Button}">
|
|
|
|
<Border Background="LightGray" BorderBrush="Gray" BorderThickness="1,1,1,0">
|
2019-11-28 17:22:04 +01:00
|
|
|
<ScrollViewer MaxHeight="400" VerticalScrollBarVisibility="Auto" Template="{StaticResource SmallBarScrollViewer}">
|
|
|
|
<StackPanel x:Name="WindowStackPanel" />
|
2019-01-17 11:12:17 +01:00
|
|
|
</ScrollViewer>
|
|
|
|
</Border>
|
2017-08-22 10:29:00 +02:00
|
|
|
</Popup>
|
2019-11-13 10:11:11 +01:00
|
|
|
<Button x:Name="Button" Background="{StaticResource BackgroundBrush}" Padding="4" Template="{StaticResource TaskbarButton}" Width="50" />
|
2022-10-27 13:06:49 +02:00
|
|
|
<Grid>
|
|
|
|
<Rectangle x:Name="ActiveBar" Cursor="Hand" Height="2.5" Width="40" VerticalAlignment="Bottom" Fill="DodgerBlue" Visibility="Collapsed" />
|
|
|
|
</Grid>
|
2017-08-22 10:29:00 +02:00
|
|
|
</Grid>
|
|
|
|
</UserControl>
|