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();
        }
Esempio n. 3
0
        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();
        }
Esempio n. 5
0
        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();
        }
Esempio n. 6
0
        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());
        }
Esempio n. 7
0
        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();
        }