public static DialogResult ShowPropertiesSheet(ReferenceFrame frame)
        {
            var props = GetPropsObject();
            props.Data = frame;

            var shell = new PropsShell(props);
            props.UpdateTabVisibility += props_UpdateTabVisibility;

            return shell.ShowDialog();
        }
        public static DialogResult ShowPropertiesSheet(ReferenceFrame frame)
        {
            WizardPropsBinding props = GetPropsObject();
            props.Data = frame;

            PropsShell shell = new PropsShell(props);
            props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility);

            return shell.ShowDialog();
        }
        public static DialogResult ShowPropertiesSheet(TimeSeriesLayer layer)
        {
            var props = GetPropsObject();
            props.Data = layer;

            var shell = new PropsShell(props);
            props.UpdateTabVisibility += props_UpdateTabVisibility;

            return shell.ShowDialog();
        }
示例#4
0
        public static DialogResult ShowPropertiesSheet(TimeSeriesLayer layer)
        {
            WizardPropsBinding props = GetPropsObject();
            props.Data = layer;

            PropsShell shell = new PropsShell(props);
            props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility);

            return shell.ShowDialog();
        }
示例#5
0
        static public DialogResult ShowPropertiesSheet(TimeSeriesLayer layer)
        {
            WizardPropsBinding props = GetPropsObject();

            props.Data = layer;

            PropsShell shell = new PropsShell(props);

            props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility);

            return(shell.ShowDialog());
        }
示例#6
0
        static public DialogResult ShowPropertiesSheet(ReferenceFrame frame)
        {
            WizardPropsBinding props = GetPropsObject();

            props.Data = frame;

            PropsShell shell = new PropsShell(props);

            props.UpdateTabVisibility += new UpdateTabDelegate(props_UpdateTabVisibility);

            return(shell.ShowDialog());
        }