如何在文件夹 app_localresources 中添加很多资源?
how to add many resources in folder app_localresources?
在 Visual Studio 中,我的文件夹 app_localresources 包含 2 个资源:example.aspx.resx 和 example.aspx.en.resx。 example.aspx.resx 文件是自动创建的,另一个是副本,但在解决方案中我有:example.aspx、example2.aspx、example3.aspx...如何添加更多资源文件自动?
"automatically" 是什么意思?看来您可以使用 this MSDN 文章。代码摘自本文:
using (ResXResourceWriter resx = new ResXResourceWriter(@".\CarResources.resx"))
{
resx.AddResource("Title", "Classic American Cars");
resx.AddResource("HeaderString1", "Make");
resx.AddResource("HeaderString2", "Model");
resx.AddResource("HeaderString3", "Year");
resx.AddResource("HeaderString4", "Doors");
resx.AddResource("HeaderString5", "Cylinders");
resx.AddResource("Information", SystemIcons.Information);
}
我找到了解决办法,就是进入设计模式,然后点击菜单工具->生成本地资源。
在 Visual Studio 中,我的文件夹 app_localresources 包含 2 个资源:example.aspx.resx 和 example.aspx.en.resx。 example.aspx.resx 文件是自动创建的,另一个是副本,但在解决方案中我有:example.aspx、example2.aspx、example3.aspx...如何添加更多资源文件自动?
"automatically" 是什么意思?看来您可以使用 this MSDN 文章。代码摘自本文:
using (ResXResourceWriter resx = new ResXResourceWriter(@".\CarResources.resx"))
{
resx.AddResource("Title", "Classic American Cars");
resx.AddResource("HeaderString1", "Make");
resx.AddResource("HeaderString2", "Model");
resx.AddResource("HeaderString3", "Year");
resx.AddResource("HeaderString4", "Doors");
resx.AddResource("HeaderString5", "Cylinders");
resx.AddResource("Information", SystemIcons.Information);
}
我找到了解决办法,就是进入设计模式,然后点击菜单工具->生成本地资源。