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);
- }