各位大侠好,请请教一个问题:
Uri uri1 = new Uri("Assets//icon.png");
这句话报错了,请问我想在代码中获取一个本地路径该如何操作呢?
Windows?Phone C# uri
------解决方案--------------------
new Uri("/Assets/icon.png",UriKind.Relative);
------解决方案--------------------
????什么情况
------解决方案--------------------
你把url tostring一下再比较。
------解决方案--------------------
// 构造函数
public MainPage()
{
InitializeComponent();
this.sth= this.ApplicationBar.Buttons[0] as Microsoft.Phone.Shell.ApplicationBarIconButton;
}
这句你写了吗??
Buttons[0]中的0是你的按钮是第几个,第一个就是0,依次类推
------解决方案--------------------
sth.IconUri.Equals(uri1)这跑的什么异常?