public bool TryReloadConfiguratorState()
        {
            T state;

            if (JsonLoader.TryLoadConfiguration(this.StateFilePath, out state))
            {
                State = state;
                return(true);
            }

            return(false);
        }