Ejemplo n.º 1
0
        public PowerShellRawUI(PowerShellConsoleModel model)
        {
            _model = model;

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