Beispiel #1
0
        public override void OpenUI(object sender, EventArgs e)
        {
            try
            {
                UI.Show();
            }
            catch
            {
                try
                {
                    UI = new TestModuleUI(this);
                    UI.Show();
                }
                catch (Exception _e)
                {
                    Logger.LogError("UI not working", this, _e);
                }

            }
        }
Beispiel #2
0
 public override void Initialize()
 {
     Logger.LogInfo("starting", this);
     UI = new TestModuleUI(this);
 }