SIL.FieldWorks.IText.InterlinDocForAnalysis.OnGotFocus C# (CSharp) 메소드

OnGotFocus() 보호된 메소드

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