浅谈WPF之样式与资源

WPF通过样式,不仅可以方便的设置控件元素的展示方式,给用户呈现多样化的体验,还简化配置,避免重复设置元素的属性,以达到节约成本,提高工作效率的目的,样式也是资源的一种表现形式。本文以一个简单的小例子,简述如何设置WPF的样式以及资源的应用,仅供学习分享使用,如有不足之处,还请指正。

图片

什么是样式?

样式(Style)是组织和重用格式化选项的重要工具。不是使用重复的标记填充XAML,以便设置外边距、内边距、颜色以及字体等细节,而是创建一系列封装所有这些细节的样式,然后再需要之处通过属性来应用样式。

样式是可应用于元素的属性值集合。使用资源的最常见原因之一就是样式。

基础样式

1. 通过TargetType设置样式

通过控件类型,统一设置样式【如:字体,大小,边距等】,以便于形成统一的风格。如下所示:

图片

通过设置样式的TargetType="Button",则可以使所有的按钮应用同一个样式,统一风格。如下所示:

<Window x:Class="WpfApp1.SevenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="基础样式示例" Height="250" Width="400"><Window.Resources><Style  TargetType="Button"  ><Setter Property="Button.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="18"></Setter>
</Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮"></Button><Button x:Name="button2" Content="第二个按钮" ></Button><Button x:Name="button3" Content="第三个按钮"></Button><Button x:Name="button4" Content="第四个按钮" ></Button></StackPanel>
</Window>

2. 通过Key设置样式

如果需要对每一个控件元素,都设置不同的样式,则可以通过不同的Key加以区分,如下所示:

图片

分别设置不同的样式,每一个样式都有一个唯一的Key,然后分别绑定到各个元素的Style属性上,如下所示:

<Window x:Class="WpfApp1.SevenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="基础样式示例" Height="250" Width="400"><Window.Resources><Style TargetType="Button" ><Setter Property="Button.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="16"></Setter></Style><Style x:Key="first"><Setter Property="Control.Foreground" Value="Red"></Setter><Setter Property="Control.Background" Value="Gray"></Setter></Style><Style x:Key="second"><Setter Property="ItemsControl.Foreground" Value="Gold"></Setter><Setter Property="ItemsControl.Background" Value="DarkCyan"></Setter></Style><Style x:Key="third"><Setter Property="ItemsControl.Foreground" Value="White"></Setter><Setter Property="ItemsControl.Background" Value="DarkRed"></Setter></Style><Style x:Key="four"><Setter Property="ItemsControl.Foreground" Value="Blue"></Setter><Setter Property="ItemsControl.Background" Value="LightCoral"></Setter></Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮" Style="{StaticResource first}"></Button><Button x:Name="button2" Content="第二个按钮" Style="{StaticResource second}"></Button><Button x:Name="button3" Content="第三个按钮" Style="{StaticResource third}"></Button><Button x:Name="button4" Content="第四个按钮" Style="{StaticResource four}"></Button></StackPanel>
</Window>

3. 样式继承

通过仔细观察发现,在设置了单独样式以后,统一的样式失去了作用,说明每一个元素控件,只能绑定一个样式,那怎么办才能让统一样式起作用呢?答案就是面向对象思想中的继承。

在WPF中,通过设置BasedOn来继承父样式,如下所示:

图片

在每一个样式通过BasedOn属性继承父样式,如下所示:

<Window x:Class="WpfApp1.SevenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="基础样式示例" Height="250" Width="400"><Window.Resources><Style x:Key="base" ><Setter Property="Control.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="18"></Setter></Style><Style x:Key="first" BasedOn="{StaticResource base}"><Setter Property="Control.Foreground" Value="Red"></Setter><Setter Property="Control.Background" Value="Gray"></Setter></Style><Style x:Key="second" BasedOn="{StaticResource base}"><Setter Property="ItemsControl.Foreground" Value="Gold"></Setter><Setter Property="ItemsControl.Background" Value="DarkCyan"></Setter></Style><Style x:Key="third" BasedOn="{StaticResource base}"><Setter Property="ItemsControl.Foreground" Value="White"></Setter><Setter Property="ItemsControl.Background" Value="DarkRed"></Setter></Style><Style x:Key="four" BasedOn="{StaticResource base}"><Setter Property="ItemsControl.Foreground" Value="Blue"></Setter><Setter Property="ItemsControl.Background" Value="LightCoral"></Setter></Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮" Style="{StaticResource first}"></Button><Button x:Name="button2" Content="第二个按钮" Style="{StaticResource second}"></Button><Button x:Name="button3" Content="第三个按钮" Style="{StaticResource third}"></Button><Button x:Name="button4" Content="第四个按钮" Style="{StaticResource four}"></Button></StackPanel>
</Window>

注意:如果样式要被其他样式继承,则最好不要使用TargetType指定。一般情况下,可能为报错【只能根据带有基类型“IFrameworkInputElement”的目标类型的 Style。】

4. 样式中绑定事件

在WPF中的样式中,通过EventSetter进行事件绑定,如下所示:

图片

在样式中,通过EventSetter设置事件,如下所示:

<Window x:Class="WpfApp1.SevenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="基础样式示例" Height="250" Width="400"><Window.Resources><Style x:Key="base"><Setter Property="Control.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="18"></Setter></Style><Style x:Key="first" BasedOn="{StaticResource base}"><Setter Property="Control.Foreground" Value="Red"></Setter><Setter Property="Control.Background" Value="Gray"></Setter><EventSetter Event="Button.MouseEnter" Handler="FirstButton_MouseEnter"></EventSetter></Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮" Style="{StaticResource first}"></Button></StackPanel>
</Window>

其中FirstButton_MouseEnter,文后台定义的一个事件函数,如下所示:​​​​​​​

private void FirstButton_MouseEnter(object sender,MouseEventArgs e)
{Button btn = (Button)sender;MessageBox.Show("鼠标进入了 "+btn.Content.ToString()+" 呀!");
}
 

触发器

使用触发器可自动完成简单的样式的改变,不需要使用代码,也可以完成不少工作触发器通过Style.Trigger集合链接到样式。每个样式可以有任意多个触发器。每个触发器都是System.Windows.TriggerBase的实例。

TriggerBase的子类

图片

1. 基础触发器

触发器,是指当满足一定条件,然后触发相关的样式设置,如下所示:

图片

示例中设置了两个触发器:1.Control.IsMouseOver鼠标覆盖在按钮上时,设置对应的样式。2. Control.IsFocused,控件聚焦时,设置对应的样式。如下所示:

<Window x:Class="WpfApp1.EightWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="EightWindow" Height="350" Width="400"><Window.Resources><Style x:Key="first"><Setter Property="Control.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="18"></Setter><Setter Property="Control.Foreground" Value="Red"></Setter><Setter Property="Control.Background" Value="LightBlue"></Setter><Style.Triggers><Trigger Property="Control.IsMouseOver" Value="True"><Setter Property="ItemsControl.Background" Value="AliceBlue"></Setter><Setter Property="Control.FontSize" Value="28"></Setter></Trigger><Trigger Property="Control.IsFocused" Value="True"><Setter Property="ItemsControl.Background" Value="DarkGoldenrod"></Setter><Setter Property="Control.FontSize" Value="28"></Setter></Trigger></Style.Triggers></Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮" Style="{StaticResource first}"></Button></StackPanel>
</Window>

注意:如果样式触发器,设置了多个,且条件相互覆盖时,以最后的设置为准

2. 多条件触发器

如果需要多个条件同时满足,才能设置对应的样式,则可以通过MultiTrigger来设置,如下所示:

<Window x:Class="WpfApp1.EightWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="EightWindow" Height="350" Width="400"><Window.Resources><Style x:Key="first"><Setter Property="Control.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="18"></Setter><Setter Property="Control.Foreground" Value="Red"></Setter><Setter Property="Control.Background" Value="LightBlue"></Setter><Style.Triggers><MultiTrigger><MultiTrigger.Conditions><Condition Property="Control.IsMouseOver" Value="True"></Condition><Condition Property="Control.IsFocused" Value="True"></Condition></MultiTrigger.Conditions><MultiTrigger.Setters><Setter Property="ItemsControl.Background" Value="Gainsboro"></Setter><Setter Property="Control.FontSize" Value="20"></Setter></MultiTrigger.Setters></MultiTrigger></Style.Triggers></Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮" Style="{StaticResource first}"></Button><Button x:Name="button2" Content="第二个按钮" ></Button></StackPanel>
</Window>

3. 事件触发器

事件触发器,是指某一个事件发生时,触发的相关动作,主要用于动画,如下所示:

图片

当鼠标进入时,字体变大,当鼠标离开时,字体恢复,如下所示:​​​​​​​

<Window x:Class="WpfApp1.EightWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="EightWindow" Height="350" Width="400"><Window.Resources><Style x:Key="first"><Setter Property="Control.Margin" Value="2,5,2,5"></Setter><Setter Property="Control.FontFamily" Value="SimSun-ExtB"></Setter><Setter Property="Control.FontSize" Value="18"></Setter><Setter Property="Control.Foreground" Value="Red"></Setter><Setter Property="Control.Background" Value="LightBlue"></Setter><Style.Triggers><EventTrigger RoutedEvent="Mouse.MouseEnter" ><EventTrigger.Actions><BeginStoryboard><Storyboard><DoubleAnimation Duration="00:00:02" To="28" From="12" Storyboard.TargetProperty="FontSize"></DoubleAnimation></Storyboard></BeginStoryboard></EventTrigger.Actions></EventTrigger><EventTrigger RoutedEvent="Mouse.MouseLeave"><EventTrigger.Actions><BeginStoryboard><Storyboard><DoubleAnimation Duration="00:00:01" Storyboard.TargetProperty="FontSize" To="18"  /></Storyboard></BeginStoryboard></EventTrigger.Actions></EventTrigger></Style.Triggers></Style></Window.Resources><StackPanel><Button x:Name="button1" Content="第一个按钮" Style="{StaticResource first}"></Button><Button x:Name="button2" Content="第二个按钮" ></Button></StackPanel>
</Window>

什么是资源?

资源是可以在应用程序中的不同位置重复使用的对象。WPF不仅支持传统的程序级的资源,还有独具特色的对象级资源,每一个界面元素,都可以拥有自己的资源,并被子元素共享。

资源基础用法

通常情况下,资源是在Window.Resources节点下,便于Window下所有的子元素共享,如下示例所示:

图片

定义一个字符串类型的资源,在TextBlock中通过Text="{StaticResource default}"的方式进行引用。如下所示:

<Window x:Class="WpfApp1.TenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"xmlns:sys="clr-namespace:System;assembly=mscorlib"mc:Ignorable="d"Title="资源基础示例" Height="250" Width="400"><Window.Resources><sys:String x:Key="default">沉舟侧畔千帆过,病树前头万木春</sys:String></Window.Resources><Grid><TextBlock x:Name="tbInfo" Text="{StaticResource default}" FontSize="20" Margin="10" Padding="10" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock></Grid>
</Window>

资源层级

WPF资源是采用从内到外,逐层进行查找的,如果在当前窗口未检索到资源,则继续到App.xaml中继续查找,示例如下所示:

图片

 在App.xaml中定义资源,然后在Window中应用资源,如下所示:

<Application x:Class="WpfApp1.App"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:local="clr-namespace:WpfApp1"xmlns:sys="clr-namespace:System;assembly=mscorlib"StartupUri="TenWindow.xaml"><Application.Resources><sys:String x:Key="story">怀旧空吟闻笛赋,到乡翻似烂柯人。</sys:String></Application.Resources>
</Application>

在Window窗口中调用,和调用本地资源是一样的,如下所示:​​​​​​​

<Window x:Class="WpfApp1.TenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"xmlns:sys="clr-namespace:System;assembly=mscorlib"mc:Ignorable="d"Title="资源基础示例" Height="250" Width="400"><Window.Resources><sys:String x:Key="default">沉舟侧畔千帆过,病树前头万木春。</sys:String></Window.Resources><Grid><Grid.RowDefinitions><RowDefinition></RowDefinition><RowDefinition></RowDefinition></Grid.RowDefinitions><TextBlock x:Name="tbInfo1" Grid.Row="0" Text="{StaticResource story}" FontSize="20" Margin="10" Padding="10" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock><TextBlock x:Name="tbInfo2" Grid.Row="1" Text="{StaticResource default}" FontSize="20" Margin="10" Padding="10" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock></Grid>
</Window>

资源分类

根据资源的加载时间点,资源分为两类,如下所示:

  1. 静态资源:静态资源是在程序启动初始化时进行加载且只加载一次的资源

  2. 动态资源:动态资源是在程序执行过程中,动态的去访问资源,会随着资源的改变而改变,所以动态资源对系统的消耗相对比较大

动态资源

上述的基础示例,采用的是静态资源的方式。动态资源则是在程序执行过程中随着资源的改变而改变。

两个按钮使用同一个资源【背景图片】,只是一个采用静态资源引用,一个采用动态资源引用,当资源发生改变时,一个不改变,一个实时变化。如下所示:

图片

 示例源码,如下所示:

<Window x:Class="WpfApp1.NineWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="资源基础示例" Height="320" Width="400"><Window.Resources><!--ViewportUnits——设置平铺的相对/绝对坐标,即图片在哪平铺。--><ImageBrush x:Key="one" Viewport="0 0 50 50" ViewportUnits="Absolute" TileMode="Tile" ImageSource="alan_logo.png" Opacity="0.3"></ImageBrush></Window.Resources><StackPanel Margin="5" x:Name="stackpanel1"><Button Content="第一个按钮" Name="first" Margin="5" Padding="25" FontSize="58" Background="{ StaticResource one}"></Button><Button Content="第二个按钮" Name="second" Margin="5" Padding="25" FontSize="58" Background="{ DynamicResource one}" Click="second_Click" ></Button></StackPanel>
</Window>

后台修改资源的代码如下所示:

private void second_Click(object sender, RoutedEventArgs e)
{var img = this.FindResource("one") as ImageBrush ;img = new ImageBrush(new BitmapImage(new Uri(@"imgs/alan_logo1.png", UriKind.Relative)));img.TileMode = TileMode.Tile;img.Opacity = 0.3;img.Viewport = new Rect(0, 0, 50, 50);img.ViewportUnits = BrushMappingMode.Absolute;this.Resources["one"] = img;//注意:此处是直接重写覆盖资源key=one的对象,并不是对原资源设置ImageSoure属性。两者效果不同
}

资源文件

资源文件位于Properties/Resources.resx中,如果想要在程序中访问资源文件的内容,则必须将访问修饰符设置成public,如下所示:

图片

在WPF中,通过Text="{x:Static prop:Resources.Password}"的方式,进行访问资源内容,示例如下:

图片

 示例源码如下:​​​​​​​

<Window x:Class="WpfApp1.ElevenWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"xmlns:prop="clr-namespace:WpfApp1.Properties"mc:Ignorable="d"Title="资源文件示例" Height="150" Width="400"><Grid><Grid.RowDefinitions><RowDefinition></RowDefinition><RowDefinition></RowDefinition><RowDefinition></RowDefinition></Grid.RowDefinitions><Grid.ColumnDefinitions><ColumnDefinition Width="1*"></ColumnDefinition><ColumnDefinition Width="2*"></ColumnDefinition></Grid.ColumnDefinitions><TextBlock x:Name="tbUserName" Text="{x:Static prop:Resources.UserName}" VerticalAlignment="Center" HorizontalAlignment="Right"  Grid.Row="0" Grid.Column="0" Margin="5"></TextBlock><TextBox x:Name="txtUserName" Grid.Row="0" Grid.Column="1" Margin="5"></TextBox><TextBlock x:Name="tbPassword" Text="{x:Static prop:Resources.Password}"  VerticalAlignment="Center" HorizontalAlignment="Right"   Grid.Row="1" Grid.Column="0" Margin="5"></TextBlock><TextBox x:Name="txtPassword" Grid.Row="1" Grid.Column="1" Margin="5"></TextBox><Button x:Name="btnSubmit" Content="{x:Static prop:Resources.Submit}" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2" Width="150" Margin="5"></Button></Grid>
</Window>

资源字典

资源字典可以实现资源的共享,一份定义,多处使用的效果。具有可维护性,高效,适应性等优势

首先创建资源字典文件,通过程序右键--添加--资源字典,打开资源字典对话框,创建名称为OneDictionary.xaml,如下所示:

图片

 资源字典中创建了五个资源,如下所示:

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:sys="clr-namespace:System;assembly=mscorlib"xmlns:local="clr-namespace:WpfApp1"><sys:String x:Key="story0">酬乐天扬州初逢席上见赠</sys:String><sys:String x:Key="story1">【作者】刘禹锡 【朝代】唐</sys:String><sys:String x:Key="story2">巴山楚水凄凉地,二十三年弃置身。</sys:String><sys:String x:Key="story3">怀旧空吟闻笛赋,到乡翻似烂柯人。</sys:String><sys:String x:Key="story4">沉舟侧畔千帆过,病树前头万木春。</sys:String><sys:String x:Key="story5">今日听君歌一曲,暂凭杯酒长精神。</sys:String>
</ResourceDictionary>

在对应窗口中,包含资源文件的路径即可,如下所示:

<Window x:Class="WpfApp1.TwelveWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:WpfApp1"mc:Ignorable="d"Title="资源字典示例" Height="350" Width="400"><Window.Resources><ResourceDictionary><ResourceDictionary.MergedDictionaries><ResourceDictionary Source="OneDictionary.xaml"></ResourceDictionary></ResourceDictionary.MergedDictionaries></ResourceDictionary></Window.Resources><StackPanel Margin="5" HorizontalAlignment="Center"><TextBlock x:Name="tbStory0" Margin="5" Padding="5" FontSize="20"  Text="{StaticResource story0}"></TextBlock><TextBlock x:Name="tbStory1" Margin="5" Padding="5" FontSize="20"  Text="{StaticResource story1}"></TextBlock><TextBlock x:Name="tbStory2" Margin="5" Padding="5" FontSize="20"  Text="{StaticResource story2}"></TextBlock><TextBlock x:Name="tbStory3" Margin="5" Padding="5" FontSize="20"  Text="{StaticResource story3}"></TextBlock><TextBlock x:Name="tbStory4" Margin="5" Padding="5" FontSize="20"  Text="{StaticResource story4}"></TextBlock><TextBlock x:Name="tbStory5" Margin="5" Padding="5" FontSize="20"  Text="{StaticResource story5}"></TextBlock></StackPanel>
</Window>

示例截图如下:

图片

以上就是【浅谈WPF之样式与资源】的全部内容,关于更多详细内容,可参考官方文档。希望能够一起学习,共同进步。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/433117.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Hadoop-MapReduce-MRAppMaster启动篇

一、源码下载 下面是hadoop官方源码下载地址&#xff0c;我下载的是hadoop-3.2.4&#xff0c;那就一起来看下吧 Index of /dist/hadoop/core 二、上下文 在上一篇<Hadoop-MapReduce-源码跟读-客户端篇>中已经将到&#xff1a;作业提交到ResourceManager&#xff0c;那…

java web 职位推荐系系统Myeclipse开发mysql数据库协同过滤算法java编程计算机网页项目

一、源码特点 java Web职位推荐系统是一套完善的java web信息管理系统 &#xff0c;对理解JSP java编程开发语言有帮助&#xff0c;系统具有完整的源代码和数据库&#xff0c;系统主要采用B/S模式开发。开发环境为 TOMCAT7.0,Myeclipse8.5开发&#xff0c;数据库为Mysql5.0…

podman+centos和docker+alpine中作性能对比遇到的问题及解决

1.dockeralpine中遇到这个问题 这是由于缺少相关的配置和依赖造成的 通过以下命令在alpine中安装相关配置 apk add --no-cache build-base cairo-dev cairo cairo-tools jpeg-dev zlib-dev freetype-dev lcms2-dev openjpeg-dev tiff-dev tk-dev tcl-dev 2.alpine中python找…

C++ 之LeetCode刷题记录(十九)

&#x1f604;&#x1f60a;&#x1f606;&#x1f603;&#x1f604;&#x1f60a;&#x1f606;&#x1f603; 开始cpp刷题之旅。 依旧是追求耗时0s的一天。 108. 将有序数组转换为二叉搜索树 给你一个整数数组 nums &#xff0c;其中元素已经按 升序 排列&#xff0c;请你…

滑木块H5小游戏

欢迎来到程序小院 滑木块 玩法&#xff1a;点击木块横着的只能左右移动&#xff0c;竖着的只能上下移动&#xff0c; 移动到箭头的位置即过关&#xff0c;不同关卡不同的木块摆放&#xff0c;快去滑木块吧^^。开始游戏https://www.ormcc.com/play/gameStart/260 html <can…

【Axure高保真原型】可视化环形图

今天和大家可视化环形图的原型模板&#xff0c;&#xff0c;包括4种效果&#xff0c;移入变色在环形中部显示数据、移入变色在标签弹窗显示数据、移入放大在环形中部显示数据、移入放大在标签弹窗显示数据。这个原型是用Axure原生元件制作的&#xff0c;所以不需要联网或者调用…

Task04:DDPG、TD3算法

本篇博客是本人参加Datawhale组队学习第四次任务的笔记 【教程地址】https://github.com/datawhalechina/joyrl-book 【强化学习库JoyRL】https://github.com/datawhalechina/joyrl/tree/main 【JoyRL开发周报】 https://datawhale.feishu.cn/docx/OM8fdsNl0o5omoxB5nXcyzsInGe…

DT浏览器浏览网页的技巧

DT浏览器浏览网页的技巧&#xff1a; 1. 使用书签和收藏夹&#xff1a;将常用的网页添加到书签或收藏夹中&#xff0c;方便快速访问。 2. 善用搜索引擎&#xff1a;使用搜索引擎可以快速找到你需要的信息。在搜索时&#xff0c;可以使用关键词和筛选条件来精确查找。 3. 注意网…

《WebKit技术内幕》学习之十五(2):Web前端的未来

2 嵌入式应用模式 2.1 嵌入式模式 读者可能会奇怪本章重点表达的是Web应用和Web运行平台&#xff0c;为什么会介绍嵌入式模式&#xff08;Embedded Mode&#xff09;呢&#xff1f;这是因为很多Web运行平台是基于嵌入式模式的接口开发出来的&#xff0c;所以这里先解释一下什…

UE APlayerController玩家控制器 是如何取得系统所发的系统按下按键信息的?Windows平台

首先我们需要知道 存储按键信息的是 UPlayerInput类中的 TMap<FKey,FKeyState> KeyStateMap; 变量 应该是这里 我经过从 Windows窗口中的消息处理函数中 进行追踪 所封的消息函数&#xff1a; LRESULT CALLBACK FWindowsApplication::AppWndProc(HWND hwnd, u…

确保 Active Directory 的安全性

Active Directory 是 Microsoft 的专有服务&#xff0c;使管理员能够管理和访问网络资源。它有助于存储和组织有关各种对象的信息&#xff0c;例如网络资源、共享文件夹、文件和用户。它还处理用户和域之间的交互。AD 在验证用户身份方面发挥着重要作用。 获得对 AD 的初始访问…

DAY11_(简易版)VUEElement综合案例

目录 1 VUE1.1 概述1.1.1 Vue js文件下载 1.2 快速入门1.3 Vue 指令1.3.1 v-bind & v-model 指令1.3.2 v-on 指令1.3.3 条件判断指令1.3.4 v-for 指令 1.4 生命周期1.5 案例1.5.1 需求1.5.2 查询所有功能1.5.3 添加功能 2 Element2.0 element-ui js和css和字体图标下载2.1 …