Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the WPF equivalant of DocumentCompleted?

I checked. This question has not been asked yet. What is the WPF equivalant of DocumentCompleted for the WebBrowser class?

the DocumentCompleted method does not exist in WPF (at least not in the latest version of .NET and visual studio). So how do I do the same thing that one could do with Windows Forms in WPF?

like image 644
xarzu Avatar asked Oct 25 '12 22:10

xarzu


1 Answers

The event that you are looking for is LoadCompleted.

Your can read more about it in .NET docs here http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.loadcompleted(v=vs.90).aspx

like image 191
reederz Avatar answered Sep 21 '22 16:09

reederz