private void reclassifyButton_Click(object sender, EventArgs e) { if (myFont != null && SelectedGlyph > -1) { Reclassify reclassWindow = new Reclassify(myFont.ID, myFont.Glyphs[SelectedGlyph].ID); if (reclassWindow.ShowDialog() == System.Windows.Forms.DialogResult.OK) { this.Enabled = false; myFont.RefreshGlyphs(true); RefreshGlyphBox(); this.Enabled = true; } } }