Click here to Skip to main content
15,892,161 members
Articles / Desktop Programming / WPF

Validizor - A Validation Control for WPF

Rate me:
Please Sign up or sign in to vote.
4.66/5 (16 votes)
17 Oct 2007CPOL7 min read 94.6K   4.3K   58  
A WPF validation control for validating your data objects.
<UserControl x:Class="Validize.Validizor"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  Name="ThisValidizor">
  
  <!-- Copyright (c) 2007, Buzz Weetman (See validizor_license.txt) -->
  
  <Grid>
    <Image Name="ValidizorImage" Stretch="None" Source="validizor.gif" ToolTip="{Binding ElementName=ThisValidizor, Path=ErrorText}" ToolTipService.InitialShowDelay="0" ToolTipService.ShowDuration="60000"/>
  </Grid>
</UserControl>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
United States United States
software engineer

Comments and Discussions