public DialogResult ShowModal(WizPropsStyle style)
        {
            WizardShell shell = new WizardShell(this);


            return(shell.ShowDialog());
        }
Exemplo n.º 2
0
        public static DialogResult ShowWizard(ReferenceFrame frame)
        {
            var props = GetPropsObject();
            props.Data = frame;

            props.UpdateTabVisibility += props_UpdateTabVisibility;

            var shell = new WizardShell(props);

            return shell.ShowDialog();
        }
Exemplo 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();
        }
Exemplo n.º 4
0
        public static DialogResult ShowWizard(TimeSeriesLayer layer)
        {
            var props = GetPropsObject();
            props.Data = layer;

            props.UpdateTabVisibility += props_UpdateTabVisibility;

            var shell = new WizardShell(props);

            return shell.ShowDialog();
        }
Exemplo 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();
        }
Exemplo 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());
        }
Exemplo 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();
        }