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

            ForegroundColor = ConsoleColor.White;
            BackgroundColor = ConsoleColor.Black;
            CursorPosition = new Coordinates(0, 0);
        }
Example #2
0
 public PowerShellUI(PowerShellConsoleModel model)
 {
     _model = model;
     _rawUI = new PowerShellRawUI(model);
 }
Example #3
0
 public PowerShellHost(PowerShellConsoleModel model)
 {
     _model = model;
     _ui = new PowerShellUI(model);
 }