MyIcon.xaml 596 B

123456789101112
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. >
  4. <Style x:Key="MyIcon" TargetType="TextBlock">
  5. <Setter Property="FontFamily" Value="/GeekDesk;component/Fonts/#iconfont"></Setter>
  6. <Setter Property="TextAlignment" Value="Center"/>
  7. <Setter Property="HorizontalAlignment" Value="Center"/>
  8. <Setter Property="VerticalAlignment" Value="Center"/>
  9. <Setter Property="FontSize" Value="20"/>
  10. </Style>
  11. </ResourceDictionary>