How to handle HTML rendering in C# WebBrowser control?
Posted
by sashaeve
on Stack Overflow
See other posts from Stack Overflow
or by sashaeve
Published on 2010-05-14T17:05:19Z
Indexed on
2010/05/14
17:34 UTC
Read the original article
Hit count: 219
webbrowser
|c#
Is any way to handle a moment when HTML page is rendered on C# WebBrowser control?
Edit. WebBrowser control has many events such as Navigated, GotFocus etc. I need to handle an event when HTML is rendered inside the control. Just wondered is it possible.
For example, in asp.net we have OnRender, OnInit, OnLoad, OnPreLoad events which form web-page life-cycle. OnLoad in asp.net is something like Navigated for WebBrowser, the idea is to handle event similar to OnRender.
© Stack Overflow or respective owner