Axiom.Samples.Widget.OnLostFocus C# (CSharp) Метод

OnLostFocus() публичный Метод

Raises raises the LostFocus event.
public OnLostFocus ( ) : void
Результат void
		public virtual void OnLostFocus()
		{
			// Make a temporary copy of the event to avoid possibility of
			// a race condition if the last subscriber unsubscribes
			// immediately after the null check and before the event is raised.
			LostFocusHandler handler = LostFocus;
			if ( handler != null )
				handler();
		}