コード例 #1
0
        public DialogResult ShowModal(WizPropsStyle style)
        {
            WizardShell shell = new WizardShell(this);


            return(shell.ShowDialog());
        }
コード例 #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();
        }
コード例 #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();
        }
コード例 #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();
        }
コード例 #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();
        }
コード例 #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());
        }
コード例 #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());
        }
コード例 #8
0
        public DialogResult ShowModal(WizPropsStyle style)
        {
            WizardShell shell = new WizardShell(this);

            return shell.ShowDialog();
        }