Files
Wino-Mail/Wino.Mail/Styles/ContentPresenters.xaml
Tiktack cad9250cb7 Feature/update icons (#378)
* Added a few icons to ttf font

* Replace junk with blocked

* Fix build

* Remove outdated commandBar styles

* Added Icomoon file to root

* Added imap icon
2024-09-14 21:15:38 +02:00

33 lines
1.0 KiB
XML

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="using:Wino.Controls">
<!-- 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}"
Icon="Attachment" />
</Viewbox>
</DataTemplate>
</ResourceDictionary>