如何在app_localresources文件夹中添加许多资源?

时间:2015-11-03 17:00:50

标签: c# asp.net resources local

在Visual Studio中,我有一个包含2个资源的文件夹 app_localresource :example.aspx.resx和example.aspx.en.resx。 example.aspx.resx文件是自动创建的,另一个是副本,但在解决方案中我有:example.aspx,example2.aspx,example3.aspx ...如何自动添加更多资源文件?

2 个答案:

答案 0 :(得分:1)

我找到了解决方案,只是处于设计模式,然后点击菜单工具 - >生成本地资源。

答案 1 :(得分:0)

你是什么意思"自动"?您似乎可以使用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);   
  }