2020-03-16 18:29:06 +01:00
|
|
|
<UserControl x:Class="SafeExamBrowser.UserInterface.Desktop.Controls.Taskbar.NotificationButton" 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: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>
|
2020-03-16 18:29:06 +01:00
|
|
|
<ResourceDictionary Source="../../Templates/Buttons.xaml" />
|
|
|
|
<ResourceDictionary Source="../../Templates/Colors.xaml" />
|
2017-08-22 15:47:42 +02:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
</ResourceDictionary>
|
|
|
|
</UserControl.Resources>
|
2017-08-22 10:29:00 +02:00
|
|
|
<Grid>
|
2024-02-23 18:32:44 +01:00
|
|
|
<Button x:Name="IconButton" Background="{StaticResource BackgroundBrush}" Click="IconButton_Click" Padding="7.5"
|
|
|
|
Template="{StaticResource TaskbarButton}" ToolTipService.ShowOnDisabled="True" Width="40" />
|
2017-08-22 10:29:00 +02:00
|
|
|
</Grid>
|
|
|
|
</UserControl>
|