/// <summary>
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void DoTestSpeedButton_Click
 (
     object sender,
     EventArgs e)
 {
     SpeedTestForm.ViewSpeedTestResult
     (
         this.SpeedTestResulTextBox,
         this.DoTestSpeedButton,
         this.DoCloseButton,
         this.TestingProcessProgressBar,
         this
     );
 }
 /// <summary>
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void SpeedTestForm_Shown
 (
     object sender,
     EventArgs e)
 {
     if (this._resultShown)
     {
         return;
     }
     this._resultShown = true;
     SpeedTestForm.ViewSpeedTestResult
     (
         this.SpeedTestResulTextBox,
         this.DoTestSpeedButton,
         this.DoCloseButton,
         this.TestingProcessProgressBar,
         this
     );
 }