1

即使我的表单未设置为本地化,如果我有一个文本长度超过 200 个字符的标签,Visual Designer 会将文本放入 .resx 而不是直接放入代码中。

这是问题,因为我使用了一种自定义本地化方法,该方法从代码中提取可本地化的字符串,但它不搜索 resx 文件。

有没有办法防止这种行为?我可以在我的代码中对字符串进行硬编码,以便提取器可以获取它,但这很烦人,因为文本在 Designer 中看起来是错误的。或者,我可以使用多个标签,但这感觉不对。

我在其他论坛看到其他人问过类似的问题,但没有答案。

4

1 回答 1

0

我没有完整的解决方案,但可以扫描与类型关联的资源并找到设计者决定这样做的字符串。

            var resources = new ResourceManager(type);
            using (var set = resources.GetResourceSet(CultureInfo.InvariantCulture, true, false))
            {
                if (set != null)
                {
                    foreach (DictionaryEntry res in set)
                    {
                        var key = res.Key as string;
                        var val = res.Value as string;
                        if (key == null || val == null)
                            continue;
                        if (!key.EndsWith(".Text"))
                            continue;
                        key = key.Substring(0, key.Length - ".Text".Length);
                        // key is now the name of your control
                        // val is the string the designer stored as its Text in the default resource
                    }
                }
            }
于 2014-10-16T17:00:31.957 回答