SIL.FieldWorks.Common.Controls.ProgressDialogWithTaskDlgImpl.OnShown C# (CSharp) Method

OnShown() protected method

Override to remove timer in the normal case where it is unnecessary.
protected OnShown ( EventArgs e ) : void
e System.EventArgs
return void
		protected override void OnShown(EventArgs e)
		{
			base.OnShown(e);
			_timer.Tick -= timer_Tick;
			_timer.Stop();
			Start();
		}
	}