资源: 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 ...
随机推荐
- News新闻发布系统
News新闻发布系统分页的实现 1.首先我们要在NewsDAO中创建一个方法,返回List<NewsEntity>集合,其中pageIndex表示当前页,pageSize表 ...
- sql 盲注之正则表达式攻击
-----------------------------------------MYSQL 5+----------------------------------------- 我们都已经知道,在 ...
- java代码封装与编译
代码封装: 在这个java程序内调用另一个类 在arrayTool中把这两个函数封装起来. 编译顺序:(由下文可知应该是先进行语法检查再进行编译) 先编译ArrayTool再编译ArrayOperat ...
- iOS UITableView 分割线从零开始
第一种(不自己画线): 代码如下 // tableView的分割线从零开始 -(void)viewDidLayoutSubviews { if ([self.tableView respondsToS ...
- shell 使用
echo -e "1\t2\t3" #-e echo -e "\e[1;31m This is red text \e[0m" #color echo -e & ...
- 利用Canvas进行绘制XY坐标系
首先来一发图 绘制XY的坐标主要是利用Canvas setLeft和setBottom功能(Canvas内置坐标的功能) 1.首先WPF中的坐标系都是从左到右,从上到下的 即左上角位置(0,0)点,所 ...
- 使用spring boot和thrift、zookeeper建立微服务
Spring cloud适应于云端服务,也适用于企业信息化SOA建设.spring boot也是restful微服务开发的利器.但对于内网服务,即服务与服务之间的调用,spring并没有去刻意封装,也 ...
- js自定义事件
自定义事件的本质,创建一个对象,然后把事件的名字作为对象的一个属性,然后value是一个[],把此事件的所以回调都push进去. 写一个很基本的,没有把对象暴露出去的js的自定义事件. var eve ...
- [BZOJ2768][JLOI2010]冠军调查(最小割)
题目:http://www.lydsy.com:808/JudgeOnline/problem.php?id=2768 分析: 如果一个点i认为是0,则连一条S->i,如果认为是1,则i-> ...
- Multiprotocol Label Switching (MPLS)
Posted by: Margaret Rouse WhatIs.com Contributor(s): Robert Sturt This definition is part of our E ...