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

OnLostFocus() 보호된 메소드

If you lost focus while processing a key or click, it may be because you are making a new selection before calling a method like TryHideFocusBoxAndUninstall(). Hide focus and uninstall first!
protected OnLostFocus ( EventArgs e ) : void
e System.EventArgs
리턴 void
		protected override void OnLostFocus(EventArgs e)
		{
			if (m_vc != null)
				m_vc.SetActiveFreeform(0, 0, 0, 0);
			base.OnLostFocus(e);
		}
InterlinDocForAnalysis