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

Related Questions

We have a WPF application that has a print preview dialog. When we create
I have a WPF project, and there is one dialog that I will re-use
I have a working WPF dialog that uses DataGrid. The DataGrid is set to
I have a list that the user can filter in several ways. two of
Say I have a WPF dialog in which I have async event handlers that
I have a WPF form that has some buttons to save user input, delete,
In my WPF application I have a lot of custom dialog boxes that pop
I have WPF Span that is used as a source to a TextBlock. I
I have WPF Application where I have One main form and other user controls
I have WPF C# application that communicate with a PLC (i.e. write/read Omron PLC's

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.