WPF how to make textbox lose focus after hitting enter

前端 未结 1 1357
醉酒成梦
醉酒成梦 2021-02-05 21:36

I created some textboxes and I want user to enter decimal values into them. In every application I have ever used, when I type something into the textbox and hit enter, the valu

相关标签:
1条回答
  • 2021-02-05 21:39

    You can also create a generic behavior which can be easily applied to any textbox within your application. Here is a sample behavior class:-

    public class TextBoxEnterKeyUpdateBehavior : Behavior<TextBox>
    {        
        protected override void OnAttached()
        {
            if (this.AssociatedObject != null)
            {
                base.OnAttached();
                this.AssociatedObject.KeyDown += AssociatedObject_KeyDown;
            }
        }
    
        protected override void OnDetaching()
        {
            if (this.AssociatedObject != null)
            {
                this.AssociatedObject.KeyDown -= AssociatedObject_KeyDown;
                base.OnDetaching();
            }
        }
    
        private void AssociatedObject_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
        {
            TextBox textBox = sender as TextBox;
            if (textBox != null)
            {
                if (e.Key == Key.Return)
                {
                    if (e.Key == Key.Enter)
                    {
                        textBox.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));
                    }
                }
            }
        }
    }
    

    To use this class in your xaml, just include it in textbox behaviors collection like this :-

    <TextBox>
        <i:Interaction.Behaviors>
               <TextBoxEnterKeyUpdateBehavior />
        </i:Interaction.Behaviors>
    </TextBox>
    

    Here "i" refers to System.Windows.Interactivity namespace.

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