SIL.FieldWorks.FieldWorks.FwMainWindowActivated C# (CSharp) Méthode

FwMainWindowActivated() private static méthode

Handles the Activated event of FieldWorks Main Windows.
private static FwMainWindowActivated ( object sender, EventArgs e ) : void
sender object The main window that just got activated.
e System.EventArgs The Not used.
Résultat void
		private static void FwMainWindowActivated(object sender, EventArgs e)
		{
			if (sender is IFwMainWnd)
				s_activeMainWnd = sender as IFwMainWnd;
		}
FieldWorks