public override IEnumerable <IMenuBarItem> AllMenuItems()
 {
     yield return(CreateMenuButton.WithCaption(AppConstants.MenuNames.GoTo)
                  .WithActionCommand(() => _presenter.GoTo(_parameterDTO))
                  .WithIcon(ApplicationIcons.GoTo));
 }
 private void onDoubleClick(object sender, MouseEventArgs e)
 {
     OnEvent(() => _presenter.GoTo(_gridViewBinder.FocusedElement));
 }