将资源字符串设置为 XAML

Set resource string to XAML(将资源字符串设置为 XAML)
本文介绍了将资源字符串设置为 XAML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我知道如何从资源中设置字符串
<TextBlock x:Uid="Text1"/>其中 Text1.Text 是你好"

I know how to set string from resource
<TextBlock x:Uid="Text1"/> where Text1.Text is "Hello"

但我想这样做

<TextBlock Text = {something here to get GreetingText}/>

其中 GreetingText 是Hello"

where GreetingText is "Hello"

这样我也可以从代码中得到相同的字符串

So that I may get the same string from code also as

var loader = new Windows.ApplicationModel.Resources.ResourceLoader();
var string = loader.GetString("GreetingText");

推荐答案

Nikhil 的答案在正确的轨道上,但对其他平台也是正确的.

Nikhil's answer is on the right track, but is right for other platforms.

对于 Windows 8,您需要在资源目录中执行以下操作:

For windows 8, you need to do the following in your resource directory:

<x:String x:Key="MyString">This is a resource</x:String>

在您的 xaml 中:

In your xaml:

<TextBlock Text="{StaticResource MyString}"/>

在代码中:

string myString = (string)(App.Current.Resources["MyString"]);

这篇关于将资源字符串设置为 XAML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)