Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CefSharp.wpf web browser navigated event (C# .Net)

Is it possible to hook up an event like Navigated with the Webbrowser control (built-in)? I need to perform oAuth in a desktop application and there i need to know if the authentication code has been added to the redirect_uri.

I was using WebBrowser control that is built in and has the events like Navigating and Navigated but i was facing an issue regarding ieframe.dll/navcancl.htm so i decided to go with CefSharp.wpf ChromiumWebBrowser but I'm not being able to locate any events that can be called when the browser has finished navigating to the URL.

This is what i have done in the xaml

 <wpf:ChromiumWebBrowser Grid.Row="0" Grid.Column="0"
        x:Name="ChromiumBrowser"
        WebBrowser="{Binding WebBrowser, Mode=OneWayToSource}" FrameLoadStart="ChromiumBrowser_OnFrameLoadStart"
        Title="{Binding Title, Mode=TwoWay}" />

and when the user requests to authenticate, I'm setting the address like

ChromiumBrowser.Address = NavigateUrl
like image 955
Ali Baig Avatar asked Sep 08 '15 15:09

Ali Baig


1 Answers

The ChromiumWebBrowser has a LoadingStateChanged event with LoadingStateChangedArgs, which has an IsLoading property. It also has a FrameLoadEnd event, which is raised when a frame in the page finishes loading.

like image 183
Glen Thomas Avatar answered Nov 07 '22 17:11

Glen Thomas