示例#1
0
 public void Initialize(InternalBlameViewModel model)
 {
     Control.DataContext = model;
     Show();
 }
示例#2
0
        void ShowInternalBlameInternal(string filePath, int?lineNumber, Action <InternalBlameViewModel> attachBlameControlHandler)
        {
            InternalBlameViewModel model = new InternalBlameViewModel(filePath, lineNumber, toolWindowViewModel);

            attachBlameControlHandler(model);
        }