WPFLocalizeExtension/Themes/Generic.xaml

20 lines
877 B
Plaintext
Raw Normal View History

2023-12-20 17:25:18 +08:00
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:engine="clr-namespace:WPFLocalizeExtension.Deprecated.Engine">
<Style TargetType="{x:Type engine:GapTextControl}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type engine:GapTextControl}">
<Border BorderBrush="SaddleBrown" BorderThickness="5">
<TextBlock x:Name="PART_TextBlock"
Background="Orange"
MinWidth="100"
MinHeight="100" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>