Beispiel #1
0
        private void TxtInfo_DoubleClick(object sender, EventArgs e)
        {
            FrmShowLog InformationLog = new FrmShowLog("Information:", ((TextBox)sender).Text);

            InformationLog.Show(this);
            Controller.Interpreter.Information += InformationLog.OnLog;
        }
Beispiel #2
0
        private void TxtWarning_DoubleClick(object sender, EventArgs e)
        {
            FrmShowLog WarningLog = new FrmShowLog("Warning:", ((TextBox)sender).Text);

            WarningLog.Show(this);
            Controller.Interpreter.Warning += WarningLog.OnLog;
        }