WPF—Style实现继承

作者:追风剑情 发布于:2019-8-27 16:14 分类:C#

示例

  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfTest"
  7. xmlns:Properties="clr-namespace:WpfTest.Properties"
  8. xmlns:wpf="http://schemas.microsoft.com/netfx/2007/xaml/presentation" x:Class="WpfTest.MainWindow"
  9. mc:Ignorable="d"
  10. Title="MainWindow" Height="250" Width="200">
  11. <!--资源通常定义在根节点,或者资源字典中-->
  12. <Window.Resources>
  13. <Style TargetType="TextBlock">
  14. <Setter Property="HorizontalAlignment" Value="Center" />
  15. <Setter Property="FontFamily" Value="Comic Sans MS"/>
  16. <Setter Property="FontSize" Value="14"/>
  17. </Style>
  18.  
  19. <!--通过BaseOn实现继承样式(Style)-->
  20. <Style BasedOn="{StaticResource {x:Type TextBlock}}"
  21. TargetType="TextBlock"
  22. x:Key="TitleText">
  23. <Setter Property="FontSize" Value="26"/>
  24. <Setter Property="Foreground">
  25. <Setter.Value>
  26. <LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
  27. <LinearGradientBrush.GradientStops>
  28. <GradientStop Offset="0.0" Color="#90DDDD" />
  29. <GradientStop Offset="1.0" Color="#5BFFFF" />
  30. </LinearGradientBrush.GradientStops>
  31. </LinearGradientBrush>
  32. </Setter.Value>
  33. </Setter>
  34. </Style>
  35. </Window.Resources>
  36. <Grid>
  37. <StackPanel VerticalAlignment="Top">
  38. <TextBlock Style="{StaticResource TitleText}" Name="textblock1">Title Text</TextBlock>
  39. <TextBlock>BaseOn TextBlock</TextBlock>
  40. </StackPanel>
  41. </Grid>
  42. </Window>

效果

1111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号