Ejemplo n.º 1
0
        public FrmLampManual(TerraExplorerX.TerraExplorerClass te, TerraExplorerX.ISGWorld61 hook)
        {
            InitializeComponent();

            this.m_TerraExplorer = te;
            this.m_Hook = hook;
        }
Ejemplo n.º 2
0
        public FrmModelVersion(TerraExplorerX.ISGWorld61 hook,string projectID)
        {
            InitializeComponent();

            this.m_Hook = hook;
            this.m_ProjectID = projectID;
        }
Ejemplo n.º 3
0
        public FrmTrafficRoute(TerraExplorerClass te,TerraExplorerX.ISGWorld61 sgWorld)
        {
            InitializeComponent();

            m_TerraExplorer = te;
            m_SGWorld = sgWorld;
            lblStatus.Text = "";
        }
Ejemplo n.º 4
0
 public FrmTerrainProfileArrPoints(TerraExplorerX.ISGWorld61 sgworld, Form frmMain)
 {
     this.m_Sgworld = sgworld;
     this._frmMain = frmMain;
     if (base.BeginForm(frmMain))
     {
         InitializeComponent();
     }
     else
     {
         this.Close();
     }
 }
Ejemplo n.º 5
0
 public FrameHook(
     Form frmMain,
     TerraExplorerX.ITerraExplorer te,
     TerraExplorerX.ISGWorld61 sgWorld,
     ESRI.ArcGIS.Controls.IMapControl4 mapControl,
     Control dockPanel
     )
 {
     this.MainForm = frmMain;
     this.MapControl = mapControl;
     this.RightDockPanel = dockPanel;
     this.SGWorld = sgWorld;
     this.TerraExplorer = te;
 }
Ejemplo n.º 6
0
 public void CreateHooker(out TerraExplorerX.SGWorld61 sgwTopLeft, out TerraExplorerX.SGWorld61 sgwTopRight, out TerraExplorerX.SGWorld61 sgwBottomLeft, out TerraExplorerX.SGWorld61 sgwBottomRight)
 {
     if (m_sgwTopLeft == null)
     {
         m_sgwTopLeft = new TerraExplorerX.SGWorld61Class();
         m_sgwTopRight = this.teTopRight.CreateInstance("TerraExplorerX.SGWorld61") as TerraExplorerX.SGWorld61;
         m_sgwBottomLeft = this.teBottomLeft.CreateInstance("TerraExplorerX.SGWorld61") as TerraExplorerX.SGWorld61;
         m_sgwBottomRight = this.teBottomRight.CreateInstance("TerraExplorerX.SGWorld61") as TerraExplorerX.SGWorld61;
     }
     sgwTopLeft = m_sgwTopLeft;
     sgwTopRight = m_sgwTopRight;
     sgwBottomLeft = m_sgwBottomLeft;
     sgwBottomRight = m_sgwBottomRight;
 }
Ejemplo n.º 7
0
        public FrmLampAnalysis(TerraExplorerX.ISGWorld61 hook)
        {
            InitializeComponent();

            this.m_Hook = hook;
        }