I need to load a web page in WPF and interact with the elements in the page. Is there a way to do this with WPF?
You could try use the WebBrowser control. This basically provides you with a web browser inside your app and you can then load and navigate through web pages.
Just place the control with
<WebBrowser Name="webBrowser" />
and then
webBrowser.Navigate("http://www.stackoverflow.com");
You can use
<WebBrowser Source="http://www.microsoft.com" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With