WPF: Selecting all the text in and setting focus to a ComboBox's editable textbox

后端 未结 1 2109

I have a WPF ComboBox which has its IsEditable property bound to a view model which can switch it on and off. When it is switched on, I want to giv

1条回答
  •  天命终不由人
    2021-01-06 16:31

    I have a solution for you.

    I'm using a combination of Model-View-ViewModel and Attached Property approach.

    Firstly, you need to know the Messaging system in MVVM for this to work, as well as know your Commands. So starting with Attached Properties, we begin to set an IsFocused event to the combo box we would like to have focused and all text selected.

      #region Select On Focus
    
      public static bool GetSelectWhenFocused(DependencyObject obj)
      {
        return (bool)obj.GetValue(SelectWhenFocusedProperty);
      }
    
      public static void SetSelectWhenFocused(DependencyObject obj, bool value)
      {
        obj.SetValue(SelectWhenFocusedProperty, value);
      }
    
      // Using a DependencyProperty as the backing store for SelectWhenFocused.  This enables animation, styling, binding, etc...
      public static read-only DependencyProperty SelectWhenFocusedProperty =
          DependencyProperty.RegisterAttached("SelectWhenFocused", typeof(bool), typeof(EditableComboBox), new UIPropertyMetadata(OnSelectOnFocusedChanged));
    
      public static void OnSelectOnFocusedChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
      {
        bool SetProperty = (bool)args.NewValue;     
    
        var comboBox = obj as ComboBox;
        if (comboBox == null) return;
    
        if (SetProperty)
        {
          comboBox.GotFocus += GotFocused;
          Messenger.Default.Register(comboBox, Focus);
        }
        else
        {
          comboBox.GotFocus -= GotFocused;
          Messenger.Default.Unregister(comboBox, Focus);
        }
      }
    
      public static void GotFocused(object sender, RoutedEventArgs e)
      {
        var comboBox = sender as ComboBox;
        if(comboBox == null) return;
    
        var textBox = comboBox.FindChild(typeof(TextBox), "PART_EditableTextBox") as TextBox;
        if (textBox == null) return;
    
        textBox.SelectAll();
      }
    
      public static void Focus(ComboBox comboBox)
      {
        if(comboBox == null) return;
        comboBox.Focus();
      }
      #endregion
    

    What this code shows is when we set the Attached Property SelectWhenFocused to true, it will register to listen for the GotFocused Event and select all the text inside.

    To use is simple:

    
    

    Now we need a button that will set the focus on the ComboBox when clicked on.

    
    

    Notice how the CommandParameter is binding to the ComboBox by its name EditBox. This is so when the command executes, only this ComboBox gets focused and all text selected.

    In my ViewModel, I have the Focus command declared as following:

    public SimpleCommand Focus { get; set; }
    public WindowVM()
    {
      Focus = new SimpleCommand {ExecuteDelegate = x => Broadcast(x as ComboBox)};
    }
    

    This is a tested and proven technique that works for me. I hope it's not an overkill solution to your problem. Good luck.

    0 讨论(0)
提交回复
热议问题