mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
|
||
|
|
<Style x:Key="NewInfoBadge" TargetType="InfoBadge">
|
||
|
|
<Setter Property="Padding" Value="5,1,5,2" />
|
||
|
|
<Setter Property="Template">
|
||
|
|
<Setter.Value>
|
||
|
|
<ControlTemplate TargetType="InfoBadge">
|
||
|
|
<Border
|
||
|
|
x:Name="RootGrid"
|
||
|
|
Padding="{TemplateBinding Padding}"
|
||
|
|
Background="{TemplateBinding Background}"
|
||
|
|
CornerRadius="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=TemplateSettings.InfoBadgeCornerRadius}">
|
||
|
|
<TextBlock
|
||
|
|
x:Uid="SettingsPage_NewInfoBadge"
|
||
|
|
HorizontalAlignment="Center"
|
||
|
|
VerticalAlignment="Center"
|
||
|
|
FontSize="10" />
|
||
|
|
</Border>
|
||
|
|
</ControlTemplate>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|