Quantcast
Channel: SharpDevelop Community
Viewing all articles
Browse latest Browse all 1764

SD5b4: MouseOver shouldn't be use for tab change in the anchored dockable panes (Patch attached)

$
0
0

I don't think it improves the user experience, if you have to avoid moving the mouse over another tab, to keep the contents you selected. Click should suffice for tab change. 

  • --- src/Libraries/AvalonDock/AvalonDock/DockablePaneAnchorTab.csMon Jan 19 23:26:36 1970
  • +++ src/Libraries/AvalonDock/AvalonDock/DockablePaneAnchorTab.csMon Jan 19 23:26:36 1970
  • @@ -213,24 +213,24 @@
  •          }
  •  
  •          #endregion
  •  
  •          /// <summary>
  •          /// Handles the MouseMove event
  •          /// </summary>
  •          /// <param name="e"></param>
  •          /// <remarks>Notify the docking manager that the referenced content should appears</remarks>
  •          protected override void OnMouseMove(MouseEventArgs e)
  •          {
  • -            if (ReferencedContent != null)
  • -                ReferencedContent.Manager.ShowFlyoutWindow(ReferencedContent, this);
  • +            // if (ReferencedContent != null)
  • +            //    ReferencedContent.Manager.ShowFlyoutWindow(ReferencedContent, this);
  •  
  •              base.OnMouseMove(e);
  •          }
  •  

Viewing all articles
Browse latest Browse all 1764

Trending Articles