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 48557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:17:55+00:00 2026-05-10T16:17:55+00:00

I have a databound TextBox in my application like so: (The type of Height

  • 0

I have a databound TextBox in my application like so: (The type of Height is decimal?)

    <TextBox Text="{Binding Height, UpdateSourceTrigger=PropertyChanged,                              ValidatesOnExceptions=True,                              Converter={StaticResource NullConverter}}" /> 
    public class NullableConverter : IValueConverter {         public object Convert(object o, Type type, object parameter, CultureInfo culture) {             return o;         }          public object ConvertBack(object o, Type type, object parameter, CultureInfo culture) {             if (o as string == null || (o as string).Trim() == string.Empty)                 return null;             return o;         }     } 

Configured this way, any non-empty strings which cannot be converted to decimal result in a validation error which will immediately highlight the textbox. However, the TextBox can still lose focus and remain in an invalid state. What I would like to do is either:

  1. Not allow the TextBox to lose focus until it contains a valid value.
  2. Revert the value in the TextBox to the last valid value.

What is the best way to do this?

Update:

I’ve found a way to do #2. I don’t love it, but it works:

private void TextBox_LostKeyboardFocus(object sender, RoutedEventArgs e) {     var box = sender as TextBox;     var binding = box.GetBindingExpression(TextBox.TextProperty);     if (binding.HasError)         binding.UpdateTarget(); } 

Does anyone know how to do this better? (Or do #1.)

  • 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. 2026-05-10T16:17:56+00:00Added an answer on May 10, 2026 at 4:17 pm

    You can force the keyboard focus to stay on the TextBox by handling the PreviewLostKeyBoardFocus event like this:

         <TextBox PreviewLostKeyboardFocus="TextBox_PreviewLostKeyboardFocus" />  
         private void TextBox_PreviewLostKeyboardFocus(object sender, KeyboardFocusChangedEventArgs e) {          e.Handled = true;      } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a databound textbox. When I change the text via the text Property
I have a UserControl, with a TextBox and a databound property - Value. Value
I have a textbox databound to a nullable int through code. If I erase
I have a WPF form with a combobox and a textbox (both are databound
Say i have a TextBox control inside of a ListView where the text is
I have a UserControl that contains a TextBox. The TextBox.Text property is data-bound and
I have a session class where i am saving text box values(application) in a
I have a WPF textbox that is databound. I need to restrict the user
I have a list of of databound items. I have a textbox that filters
I have a TreeView and a couple of other controls like TextBox es and

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.