从嵌入式 RESX 中拉出动态字符串
我有一个 RESX 资源文件,可以使用强类型属性检索值并将其分配给 Silverlight 3 应用程序中的值。然而,在运行时,我需要根据某些值生成查找键,以避免大量的 if/switch 语句。我正在尝试使用 ResourceManager,但它不喜欢 .resx 文件。
搜索了很远很远...这在 SL3 中是不可能的吗?还有人有其他建议吗?
I have a RESX resource file that I can retrieve the values out of using the strongly typed properties and assign to values in my Silverlight 3 app. However at runtime I need to generate the lookup key based on some values to avoid a ton of if/switch statements. I'm trying to use the ResourceManager, but it doesn't like .resx files.
Searched far and wide... is this just not possible in SL3? Does anyone have another suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
难道不能只对 resx 生成器创建的强类型属性类使用反射吗?
Couldn't you just use reflection on the strongly typed property class created by the resx generator?