Files
Wino-Mail/Wino.Core.WinUI/Styles/ContentPresenters.xaml
T

33 lines
1.0 KiB
XML
Raw Normal View History

2024-04-18 01:44:37 +02:00
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2025-09-29 11:23:44 +02:00
xmlns:controls="using:Wino.Core.WinUI.Controls">
2024-04-18 01:44:37 +02:00
<!-- Flagged -->
<DataTemplate x:Key="FlaggedSymbolControlTemplate">
<Viewbox
Width="14"
HorizontalAlignment="Center"
VerticalAlignment="Top">
<controls:WinoFontIcon
Margin="2,0,0,0"
Foreground="{StaticResource FlaggedBrush}"
Icon="Flag" />
</Viewbox>
</DataTemplate>
<!-- Attachments -->
<DataTemplate x:Key="AttachmentSymbolControlTemplate">
<Viewbox
x:Name="AttachmentSymbol"
Width="14"
HorizontalAlignment="Center"
VerticalAlignment="Bottom">
<controls:WinoFontIcon
Margin="2,0,0,0"
Foreground="{StaticResource AttachmentBrush}"
2024-09-14 21:15:38 +02:00
Icon="Attachment" />
2024-04-18 01:44:37 +02:00
</Viewbox>
</DataTemplate>
</ResourceDictionary>