SIL.FieldWorks.Common.Controls.Persistence.EndInit C# (CSharp) Method

EndInit() public method

When all properties have been initialized, this will be called. This is where we can load the window state.
public EndInit ( ) : void
return void
		public virtual void EndInit()
		{
			CheckDisposed();

			m_fInInit = false;
			if (m_fLoadSettingsPending)
				OnLoadSettings(Parent, EventArgs.Empty);
			m_fLoadSettingsPending = false;
		}
		#endregion