资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件
CustomResource
- ResourceDictionary
- 加载外部的 ResourceDictionary 文件
示例
1、演示“CustomResource”相关知识点
Resource/CustomResourceTest.cs

/*
* 本例是一个自定义 CustomXamlResourceLoader,用于演示 CustomResource 的使用
*/ using Windows.UI.Xaml.Resources; namespace Windows10.Resource
{
// 如果要在 xaml 中使用 CustomResource,那么需要在 C# 端自定义一个 CustomXamlResourceLoader
public class CustomResourceTest : CustomXamlResourceLoader
{
/// <summary>
/// 返回 xaml 中的 CustomResource 请求的资源
/// </summary>
/// <param name="resourceId">xaml 端的 CustomResource 中的 ResourceKey</param>
/// <param name="objectType">使用了 CustomResource 的对象类型</param>
/// <param name="propertyName">使用了 CustomResource 的属性名称</param>
/// <param name="propertyType">使用了 CustomResource 的属性类型</param>
/// <returns>返回指定的资源</returns>
protected override object GetResource(string resourceId, string objectType, string propertyName, string propertyType)
{
return $"resourceId: {resourceId}, objectType: {objectType}, propertyName: {propertyName}, propertyType: {propertyType}";
}
}
}

Resource/CustomResourceDemo.xaml

<Page
x:Class="Windows10.Resource.CustomResourceDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Resource"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <!--
下面演示如何使用 CustomResource,相关的自定义资源类参见 CustomResourceTest.cs
-->
<TextBlock Margin="5" Text="{CustomResource}" />
<TextBlock Margin="5" Text="{CustomResource Key1}" />
<TextBlock Margin="5" Text="{CustomResource Key2}" /> </StackPanel>
</Grid>
</Page>

Resource/CustomResourceDemo.xaml.cs

/*
* 演示“CustomResource”相关知识点
*/ using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Resources; namespace Windows10.Resource
{
public sealed partial class CustomResourceDemo : Page
{
public CustomResourceDemo()
{
// 这是必须的,需要先要指定当前使用的自定义 CustomXamlResourceLoader 实例
CustomXamlResourceLoader.Current = new CustomResourceTest(); this.InitializeComponent();
}
}
}

2、演示“ResourceDictionary”相关知识点
Resource/ResourceDictionary1.xaml

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <!--
以 ResourceDictionary 为根节点
--> <Color x:Key="ColorRed">#FFFF0000</Color>
<SolidColorBrush x:Key="BrushRed" Color="{ThemeResource ColorRed}" /> </ResourceDictionary>

Resource/ResourceDictionary2.xaml

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <!--
以 ResourceDictionary 为根节点
--> <Color x:Key="ColorGreen">#FF00FF00</Color>
<SolidColorBrush x:Key="BrushGreen" Color="{ThemeResource ColorGreen}" /> </ResourceDictionary>

Resource/ResourceDictionary3.xaml

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <!--
以 ResourceDictionary 为根节点
--> <Color x:Key="ColorBlue">#FF0000FF</Color>
<SolidColorBrush x:Key="BrushBlue" Color="{ThemeResource ColorBlue}" /> </ResourceDictionary>

Resource/ResourceDictionaryDemo.xaml

<Page
x:Class="Windows10.Resource.ResourceDictionaryDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Resource"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Page.Resources> <!--
FrameworkElement.Resources 就是一个 ResourceDictionary 对象 1、在 ResourceDictionary 中可以一条一条地定义资源
2、可以设置 ResourceDictionary 的 Source 属性来引用一个以 ResourceDictionary 为根节点的 xaml 文件
3、通过 MergedDictionaries 可以集成多个 ResourceDictionary
4、通过 ThemeDictionaries 可以设置不同主题下的 ResourceDictionary,详见:ThemeResourceDemo.xaml
--> <ResourceDictionary> <ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="ResourceDictionary1.xaml" />
<ResourceDictionary Source="ms-appx:///Resource/ResourceDictionary2.xaml" />
</ResourceDictionary.MergedDictionaries> <Color x:Key="ColorOrange">#FFFFA500</Color>
<SolidColorBrush x:Key="BrushOrange" Color="{ThemeResource ColorOrange}" /> </ResourceDictionary> </Page.Resources> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <TextBlock Name="textBlock1" Margin="5" Text="我是 TextBlock" Foreground="{StaticResource BrushRed}" />
<TextBlock Name="textBlock2" Margin="5" Text="我是 TextBlock" Foreground="{StaticResource BrushGreen}" />
<TextBlock Name="textBlock3" Margin="5" Text="我是 TextBlock" Foreground="{StaticResource BrushOrange}" /> <!--
演示如何通过 C# 端引入新的 ResourceDictionary 并使用其中的资源
-->
<TextBlock Name="textBlock4" Margin="5" Text="我是 TextBlock" /> <!--
演示如何获取指定资源的值
-->
<TextBlock Name="lblMsg" Margin="5" TextWrapping="Wrap" />
<Button Name="btnGetResourceValue" Margin="5" Content="获取指定资源的值" Click="btnGetResourceValue_Click" /> </StackPanel>
</Grid>
</Page>

Resource/ResourceDictionaryDemo.xaml.cs

/*
* 演示“ResourceDictionary”相关知识点
*/ using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media; namespace Windows10.Resource
{
public sealed partial class ResourceDictionaryDemo : Page
{
public ResourceDictionaryDemo()
{
this.InitializeComponent(); this.Loaded += ResourceDictionaryDemo_Loaded;
} private void ResourceDictionaryDemo_Loaded(object sender, RoutedEventArgs e)
{
// 实例化一个 ResourceDictionary
ResourceDictionary rd = new ResourceDictionary
{
Source = new Uri("ms-appx:///Resource/ResourceDictionary3.xaml", UriKind.Absolute)
}; // 将指定的 ResourceDictionary 集成到 Page.Resources 内的资源字典中
this.Resources.MergedDictionaries.Add(rd); // 使用上面集成进来的资源字典中的资源
textBlock4.Foreground = (SolidColorBrush)this.Resources["BrushBlue"]; /*
* 上面的例子演示的是如何处理指定的 FrameworkElement 中的资源
* 如果需要处理 application 级的资源的话,可以通过 Application.Current.Resources 来获取 application 级的资源(对应的 xaml 为 App.xaml)
*/
} private void btnGetResourceValue_Click(object sender, RoutedEventArgs e)
{
// 获取 application 级的指定资源的值
lblMsg.Text = "SystemAccentColor: " + Application.Current.Resources["SystemAccentColor"].ToString();
lblMsg.Text += Environment.NewLine; // 获取指定 ResourceDictionary 中的指定资源的值
lblMsg.Text += "Page.Resources 中的 ColorRed 的值: " + this.Resources["ColorRed"].ToString();
lblMsg.Text += Environment.NewLine; // 获取指定 ResourceDictionary 中的指定资源的值
ResourceDictionary resourceDictionary1 = this.Resources.MergedDictionaries[0];
lblMsg.Text += "Page.Resources.MergedDictionaries[0] 中的 ColorRed 的值: " + resourceDictionary1["ColorRed"].ToString();
}
}
}

3、演示如何加载并使用外部的 ResourceDictionary
Resource/RemoteResource.xaml

<Page
x:Class="Windows10.Resource.RemoteResource"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Windows10.Resource"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Page.Resources> <Color x:Key="ColorOrange">#FFFFA500</Color>
<SolidColorBrush x:Key="BrushOrange" Color="{ThemeResource ColorOrange}" /> </Page.Resources> <Grid Background="Transparent">
<StackPanel Margin="10 0 10 10"> <TextBlock Name="textBlock" Margin="5" Text="我是 TextBlock" Foreground="{StaticResource BrushOrange}" /> <!--
加载并使用远程 ResourceDictionary 中的资源
-->
<Button Name="btnLoadRemoteResource" Content="加载并使用远程 ResourceDictionary 中的资源" Margin="5" Click="btnLoadRemoteResource_Click" /> </StackPanel>
</Grid>
</Page>

Resource/RemoteResource.xaml.cs

/*
* 演示如何加载并使用外部的 ResourceDictionary
*/ using System;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Markup;
using Windows.UI.Xaml.Media;
using Windows.Web.Http; namespace Windows10.Resource
{
public sealed partial class RemoteResource : Page
{
// 需要加载的 ResourceDictionary 的 http 地址
string resourceDictionaryUrl = "http://localhost:44914/xaml/ResourceDictionary.txt"; public RemoteResource()
{
this.InitializeComponent();
} private async void btnLoadRemoteResource_Click(object sender, RoutedEventArgs e)
{
// 下载远程的 ResourceDictionary 文件
HttpClient client = new HttpClient();
string resourceDictionaryString = await client.GetStringAsync(new Uri(resourceDictionaryUrl, UriKind.Absolute)); // 将字符串转换为 ResourceDictionary 对象
ResourceDictionary resourceDictionary = XamlReader.Load(resourceDictionaryString) as ResourceDictionary; // 将指定的 ResourceDictionary 集成到 Page.Resources 内的资源字典中
this.Resources.MergedDictionaries.Add(resourceDictionary); // 使用远程 ResourceDictionary 中的资源
textBlock.Foreground = (SolidColorBrush)this.Resources["BrushGreen"];
}
}
}

http://localhost:44914/xaml/ResourceDictionary.txt

<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Color x:Key="ColorGreen">#FF00FF00</Color>
<SolidColorBrush x:Key="BrushGreen" Color="{ThemeResource ColorGreen}" /> </ResourceDictionary>
资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件的更多相关文章
- 背水一战 Windows 10 (11) - 资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件
[源码下载] 背水一战 Windows 10 (11) - 资源: CustomResource, ResourceDictionary, 加载外部的 ResourceDictionary 文件 作者 ...
- UNITY_资源路径与加载外部文件
UNITY_资源路径与加载外部文件 https://www.tuicool.com/articles/qMNnmm6https://blog.csdn.net/appppppen/article/de ...
- 如何点击按钮后在加载外部的Js文件
或许有朋友遇到过,想等自己点击按钮之后才执行某一个js文件,那么,你运气好,看到了我的代码了哈哈, <html> <head> <title></title& ...
- 使用js加载器动态加载外部Javascript文件
原文:http://www.cnblogs.com/xdp-gacl/p/3927417.html 今天在网上找到了一个可以动态加载js文件的js加载器,具体代码如下: JsLoader.js var ...
- JavaScript学习总结(十九)——使用js加载器动态加载外部Javascript文件
今天在网上找到了一个可以动态加载js文件的js加载器,具体代码如下: JsLoader.js 1 var MiniSite=new Object(); 2 /** 3 * 判断浏览器 4 */ 5 M ...
- Silverlight实用窍门系列:2.Silverlight动态加载外部XML指定地址的WebService---(动态加载外部XML文件中指定的WebService地址)【附带实例源码】
接上节所讲的,Silverlight可以加载外部的XML文件里面的内容,那么我们可不可以在外部XML里面配置一个WebService地址,并且以此加载这个地址来动态加载WebService呢?这样子就 ...
- Error #2044: 未处理的 IOErrorEvent:。 text=Error #2035: 找不到 URL这是flash加载外部资源时有时会遇到的问题,对于此问题解决如下
导致这个错误的主要原因是未添加IOErrorEvent事件监听,或者添加了监听,但是加载时使用了unload() 参考资料: http://blog.csdn.net/chjh0540237/arti ...
- 转载:Flash AS3.0 加载外部资源(图片,MP3,SWF)的两种方式
Flash AS3.0 加载外部资源(图片,MP3,SWF)的两种方式 出自:http://www.cnblogs.com/top5/archive/2012/08/04/2623464.html 关 ...
- iframe 加载外部资源,显示隐藏loading,onload失效
在项目中使用iframe 来加载外部资源,需要在iframe请求外部资源的时候,需要显示一个loading,在加载完成后,将这个loading隐藏掉,刚开始看到W3C中 iframe有一个 onloa ...
随机推荐
- NOIP2015 运输计划(bzoj4326)
4326: NOIP2015 运输计划 Time Limit: 30 Sec Memory Limit: 128 MBSubmit: 886 Solved: 574[Submit][Status] ...
- C# — FileHandler
学会使用OpenFileDialog和SaveFileDialog控件浏览和选择文件.使用System.IO.File和System.IO.Directory的对象来操纵文件系统(文件和目录). 在F ...
- CSS3 Media Queries 片段
CSS3 Media Queries片段 在这里主要分成三类:移动端.PC端以及一些常见的响应式框架的Media Queries片段. 移动端Media Queries片段 iPhone5 @medi ...
- OmniPlan文档链接
https://support.omnigroup.com/documentation/omniplan/mac/3.0/zh/introduction/#introduction
- 两步验证Authy时间同步问题
Authy是我常用的软件之一,通常用于Google的两步验证,或者是其他基于Google两步验证的原理的衍生程序.比如Namesilo.印象笔记等均有使用. 先说说什么是两步验证. 两步验证 两步验证 ...
- 分布式消息系统:Kafka
Kafka是分布式发布-订阅消息系统.它最初由LinkedIn公司开发,之后成为Apache项目的一部分.Kafka是一个分布式的,可划分的,冗余备份的持久性的日志服务.它主要用于处理活跃的流式数据. ...
- 需要安全认证的远程EJB调用示例(Jboss EAP 6.2环境)
一,Remote EJB 服务接口定义: package yjmyzz.ejb.server.helloworld; public interface HelloWorldService { publ ...
- c++ 头文件
可以将程序分为二部分: 头文件:包含结构声明和使用这些结构的函数的原型 源代码文件: 包含与结构有关的函数的代码 不要将函数的定义或变量的声明放在头文件里, 一般头文件可以包含以下内容 >函数原 ...
- 让时间处理简单化 【第三方扩展类库org.apache.commons.lang.time】
JAVA的时间日期处理一直是一个比较复杂的问题,大多数程序员都不能很轻松的来处理这些问题.首先Java中关于时间的类,从 JDK 1.1 开始,Date的作用很有限,相应的功能已由Calendar与D ...
- JavaScript 位运算总结&拾遗
最近补充了一些位运算的知识,深感位运算的博大精深,此文作为这个系列的总结篇,在此回顾下所学的位运算知识和应用,同时也补充下前文中没有提到的一些位运算知识. 把一个数变为大于等于该数的最小的2的幂 一个 ...