全局隐式本地化和局部显式本地化。这可能吗?
我们可以为控制设置全局隐式定位或局部显式定位吗?
Can we set global implicit localization for control or local explicit localization?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我们可以为控制设置全局隐式定位或局部显式定位吗?
Can we set global implicit localization for control or local explicit localization?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果你想使用隐式本地化,你必须使用App_LocalResources,所以“全局”实际上是不可能也不需要的。
显然,您可以将显式本地化与 App_LocalResources 一起使用,尽管我认为这里没有任何好处。
If you want to use implicit Localization, you have to use App_LocalResources, so "global" is not possible nor needed actually.
You can obviously use explicit Localization with App_LocalResources, although I see no benefit here.
您在寻找这个
String Text = Resources.GlobalRes.KeyName
吗?这将从全局资源中获取资源文本。如果你想从本地资源中获取值,那么它将是
GetLocalResourceObject("yourkey").ToString();
编辑:如果您想直接将全球资源文本设置为您的标签,请执行以下操作:
Are you Looking this
String Text = Resources.GlobalRes.KeyName
? This will get the resource text from the Global Resources.And if you want to get the value from the local Resource, then it will be
GetLocalResourceObject("yourkey").ToString();
Edit: if you want to directly set the Gloabl Resource text to your label, do so as follows: