void Button1Click(object sender, EventArgs e) { switch (GlobalVars.UserConfiguration.LauncherStyle) { case Settings.UIOptions.Style.Extended: CharacterCustomizationExtended ccustom = new CharacterCustomizationExtended(); ccustom.Show(); break; case Settings.UIOptions.Style.Compact: CharacterCustomizationCompact ccustom2 = new CharacterCustomizationCompact(); ccustom2.Show(); break; default: break; } }
void Button8Click(object sender, EventArgs e) { CharacterCustomizationExtended ccustom = new CharacterCustomizationExtended(); ccustom.Show(); }