SIL.FieldWorks.XWorks.FwXWindow.FinishRefresh C# (CSharp) Method

FinishRefresh() public method

Called in FwXApp.OnMasterRefresh AFTER clearing the cache, to reset everything.
public FinishRefresh ( ) : bool
return bool
		public bool FinishRefresh()
		{
			CheckDisposed();

			SuspendLayout();
			// force our stylesheet to resync (LT-7382).
			ResyncStylesheet();
			RefreshDisplay();

			Refresh();
			ResumeLayout(true);

			return true;
		}
FwXWindow