FocusChangeExtension.cs 983 B

123456789101112131415161718192021222324252627282930313233
  1. using System.Windows;
  2. namespace WpfControlLibrary.IpAddress
  3. {
  4. public static class FocusChangeExtension
  5. {
  6. public static bool GetIsFocused(DependencyObject obj)
  7. {
  8. return ( bool ) obj.GetValue(IsFocusedProperty);
  9. }
  10. public static void SetIsFocused(DependencyObject obj, bool value)
  11. {
  12. obj.SetValue(IsFocusedProperty, value);
  13. }
  14. public static readonly DependencyProperty IsFocusedProperty =
  15. DependencyProperty.RegisterAttached(
  16. "IsFocused", typeof(bool), typeof(FocusChangeExtension),
  17. new UIPropertyMetadata(false, OnIsFocusedPropertyChanged));
  18. private static void OnIsFocusedPropertyChanged(
  19. DependencyObject d,
  20. DependencyPropertyChangedEventArgs e)
  21. {
  22. var control = (UIElement)d;
  23. if ( ( bool ) e.NewValue )
  24. {
  25. control.Focus();
  26. }
  27. }
  28. }
  29. }