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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:20:02+00:00 2026-05-14T06:20:02+00:00

I’m working on a WPF MVVM application and I’ve got a TextBox on my

  • 0

I’m working on a WPF MVVM application and I’ve got a TextBox on my view that is bound to a DateTime property on the ViewModel. Seems simple enough, but when I clear the text in the TextBox, the property never changes. In fact, it never even fires until I begin typing “4/1…” and then it fires. What can I do to fix this? Obviously I could bind the TextBox to a string property and then update the real property in the setter, but that’s a bit of a hack. There’s got to be a better way…

ViewModel

private DateTime _startDate;
public DateTime StartDate
{
    get { return _startDate; }
    set
    {
        _startDate = value;
        OnPropertyChanged("StartDate");
    }
}

View

<TextBox Text="{Binding Path=StartDate, 
               UpdateSourceTrigger=PropertyChanged, 
               ValidatesOnDataErrors=true}"/>
  • 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-05-14T06:20:03+00:00Added an answer on May 14, 2026 at 6:20 am

    It depends on what you want to happen when the text box content isn’t a valid DateTime. The empty string can’t be parsed as a DateTime, so when you clear your text box, WPF doesn’t know what value to push back to your binding source, so it doesn’t do anything, and your setter doesn’t get run. Once you type enough to be parseable, WPF gets with the program and starts updating again, so your PropertyChanged event starts firing again. So the first thing you need to do is decide what DateTime value you want when the text is empty or unparseable.

    Once you’ve done that, you can create an IValueConverter:

    // Simplified, ignoring error checking, etc.
    public class DateTimeConverter : IValueConverter
    {
      // For source -> target (DateTime -> string) conversion
      public object Convert(object value...)
      {
        return value.ToString();  // ignoring culture, date-time format, etc.
      }
    
      // For target -> source (string -> DateTime) conversion
      public object ConvertBack(object value...)
      {
        string str = (string)value;
        DateTime dt = GetDateTimeFromMaybePartialString(str);  // your logic here
        return dt;
      }
    }
    

    and insert that into the binding:

    <Window.Resources>
      <local:DateTimeConverter x:Key="dtc" />
    </Window.Resources>
    
    <TextBox Text="{Binding Path=StartDate, 
                            Converter={StaticResource dtc},
                            UpdateSourceTrigger=PropertyChanged, 
                            ValidatesOnDataErrors=true}"/>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.