예제 #1
0
 public FrmSetLineStyle(GSOStyle style, GSOGlobeControl globeControl)
 {
     InitializeComponent();
     m_GlobeControl = globeControl;
     // 如果m_OldStyle不存在,先备份一个
     if (style != null)
     {
         m_OldStyle = style.Clone();
     }
     m_Style = style;
 }
 public FrmSetPipelineStyle(GSOStyle style, GSOGlobeControl globeControl)
 {
     InitializeComponent();
     m_GlobeControl = globeControl;
     // 如果m_OldStyle不存在,先备份一个
     if (style != null && m_OldStyle != null)
     {
         m_OldStyle = style.Clone();
     }
     m_Style = style;
 }
 public CtrlExtentSectionlineStyleSetting(GSOStyle style, GSOGlobeControl globeControl)
 {
     InitializeComponent();
     m_GlobeControl = globeControl;
     // 如果m_OldStyle不存在,先备份一个
     if (style != null)
     {
         m_OldStyle = style.Clone();
     }
     m_Style = style;
 }
예제 #4
0
 public FrmSetPolygonStyle(GSOStyle style, GSOGlobeControl globeControl)
 {
     InitializeComponent();
     m_GlobeControl = globeControl;
     // 先备份一个
     if (style != null)
     {
         m_OldStyle = style.Clone();
     }
     m_Style = style;
 }
예제 #5
0
 public CtrlExtentSectionlineStyleSetting(GSOStyle style, GSOGlobeControl globeControl)
 {
     InitializeComponent();
     m_GlobeControl = globeControl;
     // 如果m_OldStyle不存在,先备份一个
     if (style != null)
     {
         m_OldStyle = style.Clone();
     }
     m_Style = style;
 }
예제 #6
0
        public FrmSetLineStyle(GSOStyle style,GSOFeature feature,GSOLayer layer, GSOGlobeControl globeControl)
        {
            InitializeComponent();
            m_GlobeControl = globeControl;
            mlayer = layer;
            mfeature = feature;

            // 如果m_OldStyle不存在,先备份一个
            if (style != null)
            {
                m_OldStyle = style.Clone();
            }
            m_Style = style;
        }
        public FrmSetPipelineStyle(GSOStyle style, GSOFeature feature, GSOLayer layer, GSOGlobeControl globeControl)
        {
            InitializeComponent();
            m_GlobeControl = globeControl;
            mlayer         = layer;
            mfeature       = feature;

            // 如果m_OldStyle不存在,先备份一个
            if (style != null && m_OldStyle != null)
            {
                m_OldStyle = style.Clone();
            }
            m_Style = style;
        }
예제 #8
0
        public CtrlPipelineStyleSetting(GSOStyle style, GSOFeature feature, GSOLayer layer, GSOGlobeControl globeControl)
        {
            InitializeComponent();
            m_GlobeControl = globeControl;
            mlayer = layer;
            mfeature = feature;
            altituMode = feature.Geometry.AltitudeMode;

            // 如果m_OldStyle不存在,先备份一个
            if (style != null)
            {
                m_OldStyle = style.Clone();
            }
            m_Style = style;
        }
예제 #9
0
        public CtrlExtentSectionlineStyleSetting(GSOStyle style, GSOFeature feature, GSOLayer layer, GSOGlobeControl globeControl)
        {
            InitializeComponent();
            m_GlobeControl = globeControl;
            mlayer         = layer;
            mfeature       = feature;
            altituMode     = feature.Geometry.AltitudeMode;

            // 如果m_OldStyle不存在,先备份一个
            if (style != null)
            {
                m_OldStyle = style.Clone();
            }
            m_Style = style;
        }