2011-05-03 56 views

回答

1

嘗試此操作,其中rmc是完全限定的資源名稱,如果使用默認方式(項目的屬性,然後是新資源)來創建資源文件,它將是[YourProjectName] .Properties.Resources。

ResourceManager rm = new ResourceManager("rmc",Assembly.GetCallingAssembly()); 

您還可以使用資源的路徑才能到資源管理器,看看here

相關問題