Example #1
0
        private void frmTackingReplay_Load(object sender, EventArgs e)
        {
            this._trackReplayTimer          = new System.Timers.Timer();
            this._trackReplayTimer.Elapsed += new System.Timers.ElapsedEventHandler(_trackReplay_Elapsed);

            trbSmoothScale.Minimum     = 0;
            trbSmoothScale.Maximum     = 100;
            trbSmoothScale.Value       = 1;
            trbSmoothScale.LargeChange = trbSmoothScale.SmallChange = 1;

            trbReplaySpeed.Minimum     = 1;
            trbReplaySpeed.Maximum     = 100;
            trbReplaySpeed.Value       = 10;
            trbReplaySpeed.LargeChange = trbReplaySpeed.SmallChange = 1;

            lblPercent.Text = "1";

            this._replayOperation = new ReplayOperation(GlobeVariables.MainMapControl);
        }
Example #2
0
        private void frmTackingReplay_Load(object sender, EventArgs e)
        {
            this._trackReplayTimer = new System.Timers.Timer();
            this._trackReplayTimer.Elapsed += new System.Timers.ElapsedEventHandler(_trackReplay_Elapsed);

            trbSmoothScale.Minimum = 0;
            trbSmoothScale.Maximum = 100;
            trbSmoothScale.Value = 1;
            trbSmoothScale.LargeChange = trbSmoothScale.SmallChange = 1;

            trbReplaySpeed.Minimum = 1;
            trbReplaySpeed.Maximum = 100;
            trbReplaySpeed.Value = 10;
            trbReplaySpeed.LargeChange = trbReplaySpeed.SmallChange = 1;

            lblPercent.Text = "1";

            this._replayOperation = new ReplayOperation(GlobeVariables.MainMapControl);
        }