我有200个项目的数组,我在资源文件中给出了键和值,并将键保存在数组中。我想将此数组传递给列表选择器
以这种方式:
String[] countries={"In","Aus","Bng","pak",..............};
for(int i=0;i<countries.length;i++ )
{
//I need to add in this manner but resources have only static strings
countrieslistpicker.Items.Add(Resources.countries[i])
}
那么如何从resorce文件中动态获取。
答案 0 :(得分:0)
您可以使用Resource Manager的GetString()方法访问资源文件中的项目。
答案 1 :(得分:0)
尝试以下方法
for(int i=0;i<countries.length;i++ )
{
var countryName = AppResources.ResourceManager.GetString(Resources.countries[i])
countrieslistpicker.Items.Add(countryName);
}