namespace HStation.WinFrmUI { public partial class GenerateXhsProjectWizardPage : DevExpress.XtraEditors.XtraUserControl, IWizardPage { public GenerateXhsProjectWizardPage() { InitializeComponent(); } public bool AllowPrev => throw new NotImplementedException(); public bool AllowNext => throw new NotImplementedException(); public bool AllowCancel => throw new NotImplementedException(); public bool AllowComplete => throw new NotImplementedException(); public bool IsInitialize => throw new NotImplementedException(); public event Action PageStateChangedEvent; public bool CanCancel() { throw new NotImplementedException(); } public bool CanComplete() { throw new NotImplementedException(); } public bool CanNext() { throw new NotImplementedException(); } public bool CanPrev() { throw new NotImplementedException(); } public void InitialPage(ImportXhsProjectViewModel t) { throw new NotImplementedException(); } } }