예제 #1
0
 private void OnExited_Proc(object sender, EventArgs e)
 {
     //캐치 안됨
     IsRunning = false;
     TerminalWindow.Clear();
     Init();
 }
예제 #2
0
 private void OnReceived_SelfCMD(SelfCmdType type, string result)
 {
     switch (type)
     {
     case SelfCmdType.GetWorkingDirectory:
         workingDirectory = result;
         TerminalWindow.UpdateWorkingDir();
         break;
     }
 }
예제 #3
0
파일: Root.cs 프로젝트: Bgoon/WinsCode
        public Root(TerminalWindow terminalWindow)
        {
            Instance            = this;
            this.terminalWindow = terminalWindow;
            loopEngine          = new GLoopEngine();
            pluginManager       = new PluginManager(terminalWindow);
            trayIconManager     = new TrayIconManager();

            loopEngine.StartLoop();
            loopEngine.AddLoopAction(OnTick);
        }