ページに移動すると、特定の Web ページのフォーム テキスト ボックスに入力する Windows Phone 8 アプリに取り組んでいます。
私が探しているコードは、次のようなものです。
private void Button_Click(object sender, RoutedEventArgs e)
{
MiniBrowser.Source = new Uri(site, UriKind.Absolute);
MiniBrowser.Document.GetElementById("ElementIdHhere").SetAttribute("value", TextBox1.Text);
MiniBrowser.Document.GetElementById("ElementIdHhere").SetAttribute("value", TextBox2.Text);
}
ただし、Windows Phone プラットフォームは WebBrowser.Document.GetElementById をサポートしていないようです。Windows Phone 環境でこれを行う方法はありますか?