Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8043497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T04:55:10+00:00 2026-06-05T04:55:10+00:00

Having a TextBox control ( DevExpress TextEdit to be precise) inside a WinForms form,

  • 0

Having a TextBox control (DevExpress TextEdit to be precise) inside a WinForms form, I do not want the form to close when the user presses the enter key, if the focus is inside the text box.

I thought

filterTextBox.KeyDown += 
    (sender, e) => 
        e.Handled = e.KeyCode == Keys.Return || e.KeyCode == Keys.Enter;

would be sufficient, but it seems to be ignored and the form still closes.

My question is:

How to intentionally ignore the enter inside a single line text box control so that the form stays open?

Solution

The solution of Botz3000 worked for me:

filterTextBox.PreviewKeyDown += 
    (sender, e) => 
        e.IsInputKey = e.KeyCode == Keys.Return || e.KeyCode == Keys.Enter;
filterTextBox.KeyDown += 
    (sender, e) => 
        e.Handled = e.KeyCode == Keys.Return || e.KeyCode == Keys.Enter;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T04:55:12+00:00Added an answer on June 5, 2026 at 4:55 am

    Update: Try handling the PreviewKeyDown event, too. The MSDN documentation explains it pretty well in the Remarks section. By setting IsInputKey to true, you can override the default behavior so that your TextBox can handle the key. You’ll need to do this in PreviewKeyDown and then handle the key as you already do in KeyDown.

    EDIT: Not working: Previously suggested EnterMoveNextControl property

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am using a Form where i am having a textbox which on submit
I'm having an issue where I have made a user control with two content
I am having a form which will be shown on leaving the control of
I'm having a rather odd problem with a C# user control. Basically it's a
I have a TextBox control on my form that is bound to a property
I created user control for textbox with autocompleteextender, and its working fine, but now
I have a Silverlight user control that is a textbox with a search button
I have a custom user control (ascx) that contains a textbox and a Javascript-based
I have a user control which contains a number of child controls. I want
I have a TextBox with an Ajax Control Toolkit AutoCompleteExtender, and I'm having some

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.