using DevExpress.XtraEditors; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; 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 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(); } } }