Exemple #1
0
 public GUI()
 {
     System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
     InitializeComponent();
     menuStrip.Renderer   = new DarkToolStripRenderer();
     statusStrip.Renderer = new DarkToolStripRenderer();
     TextStyles.LoadColors();
     SharedControls = new SharedControls(this, statusLabel, docBox);
     SharedControls.RefreshGlobalStyles();
     SharedControls.ResetStatus(true);
     SharedControls.BFF.Owner = this;
     // Prevent fuzzy line from showing up. Tab is handled by the textbox in any case.
     display.TabStop = false;
     Controls.Add(SharedControls.InfoTip);
     AllDocs = new Dictionary <string, InstructionDocs>();
 }