예제 #1
0
        public PowerShellRawUI(PowerShellConsoleModel model)
        {
            _model = model;

            ForegroundColor = ConsoleColor.White;
            BackgroundColor = ConsoleColor.Black;
            CursorPosition = new Coordinates(0, 0);
        }
예제 #2
0
파일: PowerShellUI.cs 프로젝트: anurse/Coco
 public PowerShellUI(PowerShellConsoleModel model)
 {
     _model = model;
     _rawUI = new PowerShellRawUI(model);
 }
예제 #3
0
 public PowerShellHost(PowerShellConsoleModel model)
 {
     _model = model;
     _ui = new PowerShellUI(model);
 }