ILRepack.IntegrationTests/Scenarios/WPFSampleApplication/Themes/Generic.xaml (17 lines of code) (raw):
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:WPFSampleApplication">
<Style TargetType="{x:Type local:MyUserControl}">
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Background" Value="Yellow" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type local:MyUserControl}">
<TextBlock Text="My control template" />
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>