using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace TimeHACK.OS.Win95.Win95Apps { public partial class WinClassicAddressBook : UserControl { public WinClassicAddressBook() { InitializeComponent(); foreach (ToolStripMenuItem item in topmenu.Items) { item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); item.BackColor = Color.Silver; item.BackgroundImage = Properties.Resources.sliversilver; item.BackgroundImageLayout = ImageLayout.Center; item.DisplayStyle = ToolStripItemDisplayStyle.Text; } //Time to prepare to load all the fonts up for the combo boxes //foreach (FontFamily font in System.Drawing.FontFamily.Families) //{ // Added to the ComboBox here //comboFont.Items.Add(font.Name); //} } } }