views:

108

answers:

1

I want to be able to display the page loading status (i.e. waiting for server, downloading page, etc) using GeckoFX.

The Navigating event is perfect for letting me know when a page has started loading, but I need to know when it is finished loading.

I know the GeckoWebBrowser class has an IsBusy property. I could run a timer and to check this and update the status but this is just a hack at best.

I'm not trying to create a full blown browser here, just some basics. Can anyone nudge me in the right direction?

+1  A: 

It has a DocumentCompleted event too.

Sheng Jiang 蒋晟
So it does. Excuse my temporary blindness and accept my thanks
Ciaran