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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:36:57+00:00 2026-05-11T02:36:57+00:00

I have a WPF dialog with a couple of textboxes on it. Textboxes are

  • 0

I have a WPF dialog with a couple of textboxes on it. Textboxes are bound to my business object and have WPF validation rules attached.

The problem is that user can perfectly click ‘OK’ button and close the dialog, without actually entering the data into textboxes. Validation rules never fire, since user didn’t even attempt entering the information into textboxes.

Is it possible to force validation checks and determine if some validation rules are broken?

I would be able to do it when user tries to close the dialog and prohibit him from doing it if any validation rules are broken.

Thank you.

  • 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-11T02:36:58+00:00Added an answer on May 11, 2026 at 2:36 am

    We have this issue in our application as well. The validation only fires when bindings update, so you have to update them by hand. We do this in the Window’s Loaded event:

    public void Window_Loaded(object sender, RoutedEventArgs e) {     // we manually fire the bindings so we get the validation initially     txtName.GetBindingExpression(TextBox.TextProperty).UpdateSource();     txtCode.GetBindingExpression(TextBox.TextProperty).UpdateSource(); } 

    This will make the error template (red outline) appear, and set the Validation.HasError property, which we have triggering the OK button to disable:

    <Button x:Name='btnOK' Content='OK' IsDefault='True' Click='btnOK_Click'>     <Button.Style>         <Style TargetType='{x:Type Button}'>             <Setter Property='IsEnabled' Value='false' />             <Style.Triggers>                 <!-- Require the controls to be valid in order to press OK -->                 <MultiDataTrigger>                     <MultiDataTrigger.Conditions>                         <Condition Binding='{Binding ElementName=txtName, Path=(Validation.HasError)}' Value='false' />                         <Condition Binding='{Binding ElementName=txtCode, Path=(Validation.HasError)}' Value='false' />                     </MultiDataTrigger.Conditions>                     <Setter Property='IsEnabled' Value='true' />                 </MultiDataTrigger>             </Style.Triggers>         </Style>     </Button.Style> </Button> 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 76k
  • Answers 76k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Git seems to be pretty hot. May 11, 2026 at 3:14 pm
  • added an answer ANSI encoding is a slightly generic term used to refer… May 11, 2026 at 3:14 pm
  • added an answer Slightly modified version of Rhino (1.6r2) is part of Java… May 11, 2026 at 3:14 pm

Related Questions

I'm adding C# WPF dialogs to an existing C++ MFC app, using a C++/CLI
I have ObservableCollection<Foo> that is bound to an ItemsControl (basically displaying a list). Foo
Trying to get this example working from http://www.munna.shatkotha.com/blog/post/2008/10/26/Light-box-effect-with-WPF.aspx However, I can't seem to get
I'm new to WPF and its Databinding, but I stumbled upon a strange behaviour

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.