示例#1
0
        internal frmCommSVTrackedVsTime CreateSVTrackedVsTimeWindow()
        {
            EventHandler method = null;

            if (!base.IsDisposed)
            {
                if (method == null)
                {
                    method = delegate {
                        string str = this._nameOnly + ": SV Tracked vs Time";
                        if ((this._SIRFSVTrackedVsTime == null) || this._SIRFSVTrackedVsTime.IsDisposed)
                        {
                            this._SIRFSVTrackedVsTime           = new frmCommSVTrackedVsTime(this.dataPlot.GetNumTrackedSVs(), this.dataPlot.SVTrkr.SVIDs, this.dataPlot.GetNumSamplesTrackVsTimePlot(), this.dataPlot.tows, this.dataPlot.cnos);
                            this._SIRFSVTrackedVsTime.MdiParent = base.MdiParent;
                            this._SIRFSVTrackedVsTime.Show();
                        }
                        this._SIRFSVTrackedVsTime.Text = str;
                        this._SIRFSVTrackedVsTime.BringToFront();
                    };
                }
                base.Invoke(method);
            }
            return(this._SIRFSVTrackedVsTime);
        }
示例#2
0
 internal frmCommSVTrackedVsTime CreateSVTrackedVsTimeWindow()
 {
     EventHandler method = null;
     if (!base.IsDisposed)
     {
         if (method == null)
         {
             method = delegate {
                 string str = this._nameOnly + ": SV Tracked vs Time";
                 if ((this._SIRFSVTrackedVsTime == null) || this._SIRFSVTrackedVsTime.IsDisposed)
                 {
                     this._SIRFSVTrackedVsTime = new frmCommSVTrackedVsTime(this.dataPlot.GetNumTrackedSVs(), this.dataPlot.SVTrkr.SVIDs, this.dataPlot.GetNumSamplesTrackVsTimePlot(), this.dataPlot.tows, this.dataPlot.cnos);
                     this._SIRFSVTrackedVsTime.MdiParent = base.MdiParent;
                     this._SIRFSVTrackedVsTime.Show();
                 }
                 this._SIRFSVTrackedVsTime.Text = str;
                 this._SIRFSVTrackedVsTime.BringToFront();
             };
         }
         base.Invoke(method);
     }
     return this._SIRFSVTrackedVsTime;
 }