<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/ButtonStyle2.xaml"/> </ResourceDictionary.MergedDictionaries> <Style x:Key="Styles.PgMenu.ItemText" TargetType="TextBlock"> <Setter Property="Foreground" Value="White"/> <Setter Property="FontSize" Value="40"/> <Setter Property="Background" Value="#C00083D7"/> <Setter Property="Padding" Value="10"/> <Setter Property="VerticalAlignment" Value="Center"/> </Style> <Style x:Key="Styles.PgMenu.ItemImage" TargetType="Image"> <Setter Property="Stretch" Value="UniformToFill"/> </Style> <Style x:Key="Styles.PgMenu.ItemButton" TargetType="Button" BasedOn="{StaticResource Styles.Button.Empty}"> <Setter Property="Background" Value="#FF0083D7"/> <Setter Property="Width" Value="225"/> <Setter Property="Height" Value="140"/> <Setter Property="Margin" Value="5"/> <Style.Resources> <Style TargetType="TextBlock" BasedOn="{StaticResource Styles.PgMenu.ItemText}"/> <Style TargetType="Image" BasedOn="{StaticResource Styles.PgMenu.ItemImage}"/> </Style.Resources> </Style> </ResourceDictionary>