RefreshGlyphs() public method

public RefreshGlyphs ( bool LoadImages ) : void
LoadImages bool
return void
Exemplo n.º 1
0
 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;
         }
     }
 }