namespace HStation.WinFrmUI { public partial class ImportXhsProjectCompletedCtrl : DevExpress.XtraEditors.XtraUserControl, IWizardPage { public ImportXhsProjectCompletedCtrl() { 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 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(); } } }