如何在 Windows Phone 7 上本地化 ToggleSwitch(本地化 Silverlight Toolkit)?
Silverlight Toolkit 有一个名为 Resources.resx 的资源文件,其中包含开关的“On”和“Off”字符串状态。但是,当我添加相应的本地化资源 Resources.ru-RU.resx 时,本地化并未拾取它(尽管类似的方法适用于我自己的资源)。
一种方法是为 ToggleSwitch 内容创建我自己的绑定,但我希望有一个非编码解决方案。可能的?
Silverlight Toolkit has a resource file named Resources.resx, which contains "On" and "Off" string states for the switch. But when I have added a corresponding localized resource, Resources.ru-RU.resx, it wasn't picked up by the localization (though the similar approach works for my own resources).
One way to do it is to create my own binding for the ToggleSwitch Content, but I was hoping for a non-coding solution. Possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Silverlight Toolkit 中的 Localize ToggleSwitch 可以通过 DataTemplate 实现
声明 ValueConverter:
更多详细信息
Localize ToggleSwitch in Silverlight Toolkit can be achived via DataTemplate
Declare an ValueConverter:
More details here.
您需要将资源文件命名为
ControlResources.ru-RU.resx
,请参阅 Andrej Torzen 关于该主题的文章。You need to name your resource file
ControlResources.ru-RU.resx
, see Andrej Torzen's article on the subject.