Compartir a través de


[Sample of May 16th] WPF ListBox Validation

 

Homepage image
Sample of the Day RSS Feed

Sample Downloads: https://code.msdn.microsoft.com/CSWPFListBoxValidation-a3023d06  

Today’s sample demonstrates how to add validation to a ListBox, overriding the control to contain a ValidationListener property, which can be bound to provide validation using built in validation UI features in WPF.

The sample was written by Microsoft Senior Escalation Engineer: Jon Burchel

imageYou can find more code samples that demonstrate the most typical programming scenarios by using Microsoft All-In-One Code Framework Sample Browser or Sample Browser Visual Studio extension. They give you the flexibility to search samples, download samples on demand, manage the downloaded samples in a centralized place, and automatically be notified about sample updates. If it is the first time that you hear about Microsoft All-In-One Code Framework, please watch the introduction video on Microsoft Showcase, or read the introduction on our homepage https://1code.codeplex.com/.

 

Introduction

The sample demonstrates how to add validation to a ListBox, overriding the control to contain a ValidationListener property, which can be bound to provide validation using built in validation UI features in WPF.

 

Running the Sample

To run the sample, simply open in Visual Studio 2010 and run it.
 
It contains a ListBox, which was overridden to include a property called ValidationListener, which is used to bind the ListBox to a property used for validation, and a validation rule.  The validation property is simply a text field added to the Window, in which error text is written if the ListBox is found having no selected items.  Of course the rule could be more complex as necessary, but this demonstrates the approach.
 
When the form first displays, no items are selected, so it is not valid.  Validation UI displays a red outline around it, and another label control is also validated using the same criteria, and is outlined in red as well, and displays the validation error message.
 
Selecting any items validates the control.  Removing all selections will again invalidate the control.

 

Implementation

The built in validation in WPF does not have a default means of performing validation on collection-valued sources, and was designed for scalar-valued properties.  To put another way, validation listens to PropertyChanged events, but not to CollectionChanged events.  In order to achieve this, a scalar-valued property is required for validation to listen to.  This implementation simply creates that property (the Validation property defined in the Window), and then detects that in the ValidationRule for the ValidationListener property of the ValidatingListBox, to which it is bound.  Whenever that property changes, WPF detects it because the rule is marked as ValidatesOnTargetUpdated, and runs the defined validation logic.

References

How to: Implement Binding Validation
 https://msdn.microsoft.com/en-us/library/ms753962.aspx
 
Hook Up and Display Validation in WPF
https://msdn.microsoft.com/en-us/vbasic/cc788743.aspx