mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-09 04:57:56 +08:00
073caffef4
* Unify exe/dll naming - PowerToys.Runner Align naming with other exes - PowerToys Runner -> PowerToys.Runner * Unify exe/dll naming - Microsoft.PowerToys.Common.UI Project name - Microsoft.PowerToys.Common.UI -> Common.UI dll name - Microsoft.PowerToys.Common.UI.dll -> PowerToys.Common.UI.dll * Unify exe/dll naming - Settings Project names - Microsoft.PowerToys.Settings* -> Settings* Dll names - Microsoft.PowerToys.Settings*.dll -> PowerToys.Settings*.dll * Revert file autoformat * [Docs] Update paths to settings projects/files * Fix tests - Update path
23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Style x:Key="OobeSubtitleStyle" TargetType="TextBlock">
|
|
<Setter Property="Margin" Value="0,16,0,0" />
|
|
<Setter Property="Foreground" Value="{ThemeResource DefaultTextForegroundThemeBrush}" />
|
|
<Setter Property="AutomationProperties.HeadingLevel" Value="Level3" />
|
|
<Setter Property="FontFamily" Value="XamlAutoFontFamily" />
|
|
<Setter Property="FontSize" Value="{StaticResource BodyTextBlockFontSize}" />
|
|
<Setter Property="FontWeight" Value="SemiBold" />
|
|
<Setter Property="TextTrimming" Value="CharacterEllipsis" />
|
|
<Setter Property="TextWrapping" Value="Wrap" />
|
|
<Setter Property="LineStackingStrategy" Value="MaxHeight" />
|
|
<Setter Property="TextLineBounds" Value="Full" />
|
|
</Style>
|
|
|
|
<x:Double x:Key="SecondaryTextFontSize">12</x:Double>
|
|
<Style x:Key="SecondaryTextStyle" TargetType="TextBlock">
|
|
<Setter Property="FontSize" Value="{StaticResource SecondaryTextFontSize}"/>
|
|
<Setter Property="Foreground" Value="{ThemeResource TextFillColorSecondaryBrush}"/>
|
|
</Style>
|
|
</ResourceDictionary> |