WPF—定义Style

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

MainWindow.xaml

  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. <SolidColorBrush x:Key="MyBrush" Color="Gold"/>
  14. <!--用style可以对一组属性进行定义-->
  15. <Style TargetType="Border" x:Key="PageBackground">
  16. <Setter Property="Background" Value="Blue"/>
  17. </Style>
  18. <Style TargetType="TextBlock" x:Key="TitleText">
  19. <Setter Property="Background" Value="Blue"/>
  20. <Setter Property="DockPanel.Dock" Value="Top"/>
  21. <Setter Property="FontSize" Value="18"/>
  22. <Setter Property="Foreground" Value="#4E87D4"/>
  23. <Setter Property="FontFamily" Value="Trebuchet MS"/>
  24. <Setter Property="Margin" Value="0,40,10,10"/>
  25. </Style>
  26. <Style TargetType="TextBlock" x:Key="Label">
  27. <Setter Property="DockPanel.Dock" Value="Right"/>
  28. <Setter Property="FontSize" Value="8"/>
  29. <Setter Property="Foreground" Value="{StaticResource MyBrush}"/>
  30. <Setter Property="FontFamily" Value="Arial"/>
  31. <Setter Property="FontWeight" Value="Bold"/>
  32. <Setter Property="Margin" Value="0,3,0,0"/>
  33. </Style>
  34. </Window.Resources>
  35. <Grid Margin="0,0,0,0">
  36. <StackPanel>
  37. <!--首先搜寻资源字典,然后再从当前节点开始向上寻找Resource-->
  38. <!--静态资源引用不支持前向引用-->
  39. <!--
  40. StaticResource https://docs.microsoft.com/zh-cn/dotnet/framework/wpf/advanced/staticresource-markup-extension
  41. DynamicResource https://docs.microsoft.com/zh-cn/dotnet/framework/wpf/advanced/dynamicresource-markup-extension
  42. -->
  43. <Border Style="{StaticResource PageBackground}" Height="220" Margin="0,0,-0.4,0">
  44. <DockPanel Margin="0,0,-0.4,0">
  45. <TextBlock Style="{StaticResource TitleText}">Title</TextBlock>
  46. <TextBlock Style="{StaticResource Label}">Label</TextBlock>
  47. <TextBlock DockPanel.Dock="Top" HorizontalAlignment="Left" FontSize="36" Foreground="{StaticResource MyBrush}" Text="Text" Margin="20" />
  48. <Button DockPanel.Dock="Top" HorizontalAlignment="Left" Height="30" Background="{StaticResource MyBrush}" Margin="0">Button</Button>
  49. <Ellipse DockPanel.Dock="Top" HorizontalAlignment="Left" Width="100" Height="100" Fill="{StaticResource MyBrush}" Margin="40" />
  50. </DockPanel>
  51. </Border>
  52. </StackPanel>
  53. </Grid>
  54. </Window>

效果截图

11111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号