public SimulatorForm(IEnumerable<ISimulatorPluginFactory> plugins, bool splashOnLoad)
        {
            InitializeComponent();

            this.plugins = plugins;
            this.splashOnLoad = splashOnLoad;
            this.fileLogger = new LogToFile();
            this.log = new LogMultiplexer(this.logWindow1, fileLogger);

            this.logFileControl.FileLogger = fileLogger;

            var toolTipUserNote = new ToolTip();
            toolTipUserNote.SetToolTip(this.buttonMakeNote, "Make a user-defined note in the log");
        }