I'm trying to use a Windows Forms Web Browser User Control in my WPF Application.
<WindowsFormsHost Width="900" Grid.Column="0" Height="700" x:Name="WinFormsHost1" HorizontalAlignment="Left" Margin="5" VerticalAlignment="Top" Grid.ColumnSpan="2"/>
In my code I set the child of the WindowsFormsHost to an existing Web Browser in another object
WinFormsHost1.Child = bot.WebBrowser;
The Chrome Web Browser here is updating values in a table I need the user to be able to view (and see updated) - but but the other one hosted in my project is not updating, I have circled a value that has updated in Chrome but not in my wpf application.
WPF Application on Left, Google Chrome on the Right