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。
何か考えがありますか?