在 html 对象中有一个 initparams:
<param name="initParams" value="location=images/images.xml" />
设置位置的正确方法是什么?
在 MainPage.xaml.cs 中:
WebClient client = new WebClient();
client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
client.DownloadStringAsync( new Uri(Location, UriKind.RelativeOrAbsolute));
void client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
string xml = e.Result;
XDocument xDoc = XDocument.Parse(xml);
在线 string xml = e.Result
飞行 TargetInvocationException。
有什么想法吗?