예제 #1
0
 internal void OnLoadingStateChange(bool isLoading, bool canGoBack, bool canGoForward)
 {
     if (this.LoadingStateChange != null)
     {
         var e = new LoadingStateChangeEventArgs(isLoading, canGoBack, canGoForward);
         this.LoadingStateChange(this, e);
     }
 }
예제 #2
0
 internal void OnLoadingStateChange( bool isLoading, bool canGoBack, bool canGoForward )
 {
     if( this.LoadingStateChange != null )
     {
         var e = new LoadingStateChangeEventArgs( isLoading, canGoBack, canGoForward );
         this.LoadingStateChange( this, e );
     }
 }