2020-03-16 18:29:06 +01:00
|
|
|
<UserControl x:Class="SafeExamBrowser.UserInterface.Desktop.Controls.Taskbar.ApplicationWindowButton" 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
|
|
|
mc:Ignorable="d" d:DesignWidth="250">
|
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>
|
2019-08-30 12:30:00 +02:00
|
|
|
<Button x:Name="Button" Background="Transparent" Height="40" Padding="10" Template="{StaticResource TaskbarButton}">
|
2017-08-22 10:29:00 +02:00
|
|
|
<StackPanel Orientation="Horizontal">
|
2019-01-18 09:58:14 +01:00
|
|
|
<ContentControl x:Name="Icon" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="0,0,10,0" Width="20" />
|
|
|
|
<TextBlock x:Name="Text" HorizontalAlignment="Left" VerticalAlignment="Center" Padding="5" MaxWidth="350" TextTrimming="CharacterEllipsis" />
|
2017-08-22 10:29:00 +02:00
|
|
|
</StackPanel>
|
|
|
|
</Button>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|