IWizard.cs 485 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace TheraBytes.BetterUi.Editor
  6. {
  7. public interface IWizard
  8. {
  9. int CurrentPageNumber { get; }
  10. int TotalPageCount { get; }
  11. PersistentWizardData PersistentData { get; }
  12. void PageFinished(WizardPage page);
  13. void DoReloadOperation(WizardPage page, Action operation);
  14. void JumpToPage<T>() where T : WizardPage;
  15. void Close();
  16. }
  17. }