/// <summary> Сбросить все настройки по умолчанию </summary>
        public static void ResetSettings()
        {
            var          themSettingsHandler = new ThemSettingsHandler();
            ThemSettings storedSettings      = themSettingsHandler.GetDeffaultThemSettings();

            themSettingsHandler.SetUpSettings(storedSettings);
        }
        /// <summary> Извлечь сохраненную тему </summary>
        public static ThemSettings LoadSavedInstance()
        {
            var storedSettings = Properties.Settings.Default.ThemSettings;

            if (storedSettings != null)
            {
                return(storedSettings);
            }

            storedSettings = new ThemSettingsHandler().GetDeffaultThemSettings();
            Properties.Settings.Default.ThemSettings = storedSettings;
            return(storedSettings);
        }