private void themeComboBox_SelectedIndexChanged(object sender, EventArgs e)
        {
            MetroThemeStyle newTheme = (MetroThemeStyle)themeComboBox.SelectedItem;

            AppearanceManager.SetThemeOnForms(newTheme, this, _shellForm);

            AppearanceManager.SaveSettings(_shellForm.BaseMetroStyleManager);
        }