码迷,mamicode.com
首页 > Windows程序 > 详细

在独立的文件中定义WPF资源

时间:2014-10-26 18:28:15      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   使用   strong   


一、文章概述

本演示介绍如何在单独的文件中定义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>

按照如上的代码操作,就算是搞定了!

在独立的文件中定义WPF资源

标签:style   blog   http   color   io   os   ar   使用   strong   

原文地址:http://blog.csdn.net/gjysk/article/details/40478129

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!