Last active
January 2, 2018 15:57
-
-
Save kevingosse/42e309a86c16da85f0aa434f3d4a1827 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Import] | |
private IDbgToolWindowManager _toolWindowManager; | |
public CommandHistoryWindow() | |
{ | |
History = new ObservableCollection<Tuple<string, string>>(); | |
OpenCommand = new DelegateCommand<string>(Open); | |
} | |
public DelegateCommand<string> OpenCommand { get; } | |
private void Open(string commandOutput) | |
{ | |
_toolWindowManager.OpenToolWindow("CommandWindow", commandOutput); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment