private void RegisterWindow()
 {
     windowManager.Register(WindowId, () =>
     {
         var view = new AnnotationsWindow(annotationsController, sourceCodeController);
         windowManager.Add(WindowId, view, AnnotationsResources.Annotations, AnnotationsResources.AnnotationsIcon);
     }, Location.Bottom);
 }
Example #2
0
 private void RegisterWindow()
 {
     windowManager.Register(WindowId, () =>
     {
         var view = new AnnotationsWindow(annotationsController, sourceCodeController);
         windowManager.Add(WindowId, view, AnnotationsResources.Annotations, AnnotationsResources.AnnotationsIcon);
     }, Location.Bottom);
 }