SIL.FieldWorks.IText.InterlinDocForAnalysis.OnGotFocus C# (CSharp) Méthode

OnGotFocus() protected méthode

If we have an active focus box put the focus back there when this is focused.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs
Résultat void
		protected override void OnGotFocus(EventArgs e)
		{
			if (ExistingFocusBox != null)
				ExistingFocusBox.Focus();
			base.OnGotFocus(e);
		}
InterlinDocForAnalysis