You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Input;
|
|
|
|
namespace MediaBrowser.UI.Controls
|
|
{
|
|
/// <summary>
|
|
/// Extends RadioButton to provide focus on mouse over, and invoke on enter press
|
|
/// </summary>
|
|
public class ExtendedRadioButton : RadioButton
|
|
{
|
|
private Point? _lastMouseMovePoint;
|
|
|
|
/// <summary>
|
|
/// Handles OnMouseMove to auto-select the item that's being moused over
|
|
/// </summary>
|
|
protected override void OnMouseMove(MouseEventArgs e)
|
|
{
|
|
base.OnMouseMove(e);
|
|
|
|
var window = this.GetWindow();
|
|
|
|
// If the cursor is currently hidden, don't bother reacting to it
|
|
if (Cursor == Cursors.None || window.Cursor == Cursors.None)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Store the last position for comparison purposes
|
|
// Even if the mouse is not moving this event will fire as elements are showing and hiding
|
|
var pos = e.GetPosition(window);
|
|
|
|
if (!_lastMouseMovePoint.HasValue)
|
|
{
|
|
_lastMouseMovePoint = pos;
|
|
return;
|
|
}
|
|
|
|
if (pos == _lastMouseMovePoint)
|
|
{
|
|
return;
|
|
}
|
|
|
|
_lastMouseMovePoint = pos;
|
|
|
|
Focus();
|
|
}
|
|
}
|
|
}
|