SystemTrayMenu/UserInterface/TaskbarLogo.xaml
Peter Kirmeier ae6b12600c Use global style for all windows
Including foreground and background color, clear type rendering and using layout rounding
2023-09-01 17:34:42 +02:00

12 lines
750 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (c) 2022-2023 Peter Kirmeier -->
<Window 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"
x:Class="SystemTrayMenu.UserInterface.TaskbarLogo"
Style="{StaticResource {x:Type Window}}" mc:Ignorable="d" Background="Transparent"
WindowStyle="None" ResizeMode="NoResize" Width="38" Height="38" Topmost="True" AllowsTransparency="True">
<Image Width="32" Height="32" Margin="3" Source="{StaticResource ApplicationImage}"/>
</Window>