我的App页面中有五个国家/地区徽标图像。 现在我想根据国家/地区动态更改徽标。 我该如何更换徽标?
请帮忙
答案 0 :(得分:0)
步骤1:声明一个像这样的全局变量
BitmapImage位;
第2步: 使用switch语句选择你的图像uri:
public void ChoseUri(string cuntryName)
{
switch (cuntryName)
{
case "US":
bit = new BitmapImage(new Uri(@"Image/Us.png", UriKind.RelativeOrAbsolute));
break;
case "INDIA":
bit = new BitmapImage(new Uri(@"Image/INDIA.png", UriKind.RelativeOrAbsolute));
break;
default:
}
}
步骤3:动态设置图像源:
imgCountry.Source =位;