| 123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Xilium.CefGlue.WPF
- {
- public class LoadingStateChangeEventArgs : EventArgs
- {
- public bool IsLoading { get; private set; }
- public bool CanGoBack { get; private set; }
- public bool CanGoForward { get; private set; }
- public LoadingStateChangeEventArgs(bool isLoading, bool canGoBack, bool canGoForward)
- {
- this.IsLoading = isLoading;
- this.CanGoBack = canGoBack;
- this.CanGoForward = canGoForward;
- }
- }
- }
|