Exemple #1
0
 private void ReloadNewFontTable()
 {
     if (NewFontTable != null)
     {
         NewFontTable.Reload();
     }
 }
Exemple #2
0
 // Navigator
 private void fontType_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (this.Updating)
     {
         return;
     }
     currentGlyph             = 0;
     this.Updating            = true;
     fontWidth.Enabled        = FontType < FontType.Triangles;
     toggleKeystrokes.Enabled = FontType < FontType.Triangles;
     if (toggleKeystrokes.Checked)
     {
         toggleKeystrokes.Checked = FontType < FontType.Triangles;
     }
     openNewFontTable.Enabled = FontType < FontType.Triangles;
     this.Updating            = false;
     InitializeFont();
     SetFontTableImage();
     if (FontType < FontType.Triangles)
     {
         ReloadNewFontTable();
     }
     else
     {
         NewFontTable.Hide();
         toggleKeystrokes.Checked = false;
         picture.Visible          = true;
         fontTable.Visible        = false;
         fontTable.SendToBack();
     }
 }
Exemple #3
0
 private void LoadNewFontTable()
 {
     if (NewFontTable == null)
     {
         NewFontTable = new NewFontTable(this);
     }
     else
     {
         ReloadNewFontTable();
     }
 }