LoadingStateChangeEventArgs.cs 592 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Xilium.CefGlue.WPF
  6. {
  7. public class LoadingStateChangeEventArgs : EventArgs
  8. {
  9. public bool IsLoading { get; private set; }
  10. public bool CanGoBack { get; private set; }
  11. public bool CanGoForward { get; private set; }
  12. public LoadingStateChangeEventArgs(bool isLoading, bool canGoBack, bool canGoForward)
  13. {
  14. this.IsLoading = isLoading;
  15. this.CanGoBack = canGoBack;
  16. this.CanGoForward = canGoForward;
  17. }
  18. }
  19. }