Exemple #1
0
        public CommandControl(IDbgConsole console, IHistoryManager historyManager, string content)
        {
            _console        = console;
            _historyManager = historyManager;

            InitializeComponent();

            AppendDmlOutput(content);
        }
Exemple #2
0
        public CommandWindow(IDbgConsole console, IHistoryManager historyManager, string content)
        {
            _console        = console;
            _historyManager = historyManager;

            InitializeComponent();

            SetTabTitle(this, new ToolWindowTitle("Window " + Interlocked.Increment(ref _index)));

            AppendDmlOutput(content);
        }