一、文章概述
本演示介绍如何在单独的文件中定义WPF资源,并在需要的地方调用相关资源文件。相关下载(代码、屏幕录像): http://pan.baidu.com/s/1sjO7StB
在线播放: http://v.youku.com/v_show/id_XODExODg0MzIw.html
温馨提示:如果屏幕录像和代码不能正常下载,可站内留言,或发邮件到524130780@QQ.COM
二、首先在单独的文件中定义资源
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">
<sys:String x:Key="text">路漫漫其修远兮,吾将上下而求索!</sys:String>
</ResourceDictionary>
三、在使用资源的地方连接到独立的资源文件上
XAML代码如下:
<Window x:Class="Demo009.MainWindow"
xmlns="http://sche1mas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Resource Files" FontSize="30">
<Window.Resources>
<ResourceDictionary Source="ShinyRed.xaml" />
</Window.Resources>
<StackPanel>
<TextBlock Text="{StaticResource text}" />
</StackPanel>
</Window>
按照如上的代码操作,就算是搞定了!