Ejemplo n.º 1
0
 public Style()
 {
     this.bg_color = System.Drawing.Color.White;
     this.fg_color = System.Drawing.Color.Gray;
     this.use_full_row = true;
     this.ffamilies = new FontFamilyCollection();
     System.Drawing.Text.InstalledFontCollection ifc = new System.Drawing.Text.InstalledFontCollection();
     foreach( System.Drawing.FontFamily ff in ifc.Families ){
         this.ffamilies.Add(ff);
     }
 }
Ejemplo n.º 2
0
 public Style()
 {
     this.bg_color     = System.Drawing.Color.White;
     this.fg_color     = System.Drawing.Color.Gray;
     this.use_full_row = true;
     this.ffamilies    = new FontFamilyCollection();
     System.Drawing.Text.InstalledFontCollection ifc = new System.Drawing.Text.InstalledFontCollection();
     foreach (System.Drawing.FontFamily ff in ifc.Families)
     {
         this.ffamilies.Add(ff);
     }
 }