moving and fixing
This commit is contained in:
40
Hashing/WPFStuff/MagicCode/FocusAdvancement.cs
Normal file
40
Hashing/WPFStuff/MagicCode/FocusAdvancement.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Windows;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace Util.WPF
|
||||
{
|
||||
public static class FocusAdvancement
|
||||
{
|
||||
public static bool GetAdvancesByEnterKey(DependencyObject obj)
|
||||
{
|
||||
return (bool)obj.GetValue(AdvancesByEnterKeyProperty);
|
||||
}
|
||||
|
||||
public static void SetAdvancesByEnterKey(DependencyObject obj, bool value)
|
||||
{
|
||||
obj.SetValue(AdvancesByEnterKeyProperty, value);
|
||||
}
|
||||
|
||||
public static readonly DependencyProperty AdvancesByEnterKeyProperty =
|
||||
DependencyProperty.RegisterAttached("AdvancesByEnterKey", typeof(bool), typeof(FocusAdvancement),
|
||||
new UIPropertyMetadata(OnAdvancesByEnterKeyPropertyChanged));
|
||||
|
||||
static void OnAdvancesByEnterKeyPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
||||
{
|
||||
var element = d as UIElement;
|
||||
if (element == null) return;
|
||||
|
||||
if ((bool)e.NewValue) element.KeyDown += Keydown;
|
||||
else element.KeyDown -= Keydown;
|
||||
}
|
||||
|
||||
static void Keydown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (!e.Key.Equals(Key.Enter)) return;
|
||||
|
||||
var element = sender as UIElement;
|
||||
if (element != null) element.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user