public DialogResult ShowModal(WizPropsStyle style) { WizardShell shell = new WizardShell(this); return(shell.ShowDialog()); }
public static DialogResult ShowWizard(ReferenceFrame frame) { var props = GetPropsObject(); props.Data = frame; props.UpdateTabVisibility += props_UpdateTabVisibility; var shell = new WizardShell(props); return shell.ShowDialog(); }
public static DialogResult ShowWizard(ReferenceFrame frame) { WizardPropsBinding props = GetPropsObject(); props.Data = frame; props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility); WizardShell shell = new WizardShell(props); return shell.ShowDialog(); }
public static DialogResult ShowWizard(TimeSeriesLayer layer) { var props = GetPropsObject(); props.Data = layer; props.UpdateTabVisibility += props_UpdateTabVisibility; var shell = new WizardShell(props); return shell.ShowDialog(); }
public static DialogResult ShowWizard(TimeSeriesLayer layer) { WizardPropsBinding props = GetPropsObject(); props.Data = layer; props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility); WizardShell shell = new WizardShell(props); return shell.ShowDialog(); }
static public DialogResult ShowWizard(TimeSeriesLayer layer) { WizardPropsBinding props = GetPropsObject(); props.Data = layer; props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility); WizardShell shell = new WizardShell(props); return(shell.ShowDialog()); }
static public DialogResult ShowWizard(ReferenceFrame frame) { WizardPropsBinding props = GetPropsObject(); props.Data = frame; props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility); WizardShell shell = new WizardShell(props); return(shell.ShowDialog()); }
public DialogResult ShowModal(WizPropsStyle style) { WizardShell shell = new WizardShell(this); return shell.ShowDialog(); }