2017-08-22 10:29:00 +02:00
|
|
|
<UserControl x:Class="SafeExamBrowser.UserInterface.Classic.Controls.NotificationButton"
|
|
|
|
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.Classic.Controls"
|
2017-08-22 10:58:36 +02:00
|
|
|
mc:Ignorable="d" d:DesignHeight="40" d:DesignWidth="40">
|
2017-08-22 15:47:42 +02:00
|
|
|
<UserControl.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
|
|
<ResourceDictionary Source="../Templates/Buttons.xaml" />
|
|
|
|
<ResourceDictionary Source="../Templates/Colors.xaml" />
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</UserControl.Resources>
|
2017-08-22 10:29:00 +02:00
|
|
|
<Grid>
|
2019-01-09 11:17:43 +01:00
|
|
|
<Button x:Name="IconButton" Background="{StaticResource BackgroundBrush}" Click="Icon_Click" Padding="7.5" Template="{StaticResource TaskbarButton}" Width="40" />
|
2017-08-22 10:29:00 +02:00
|
|
|
</Grid>
|
|
|
|
</UserControl>
|