Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to develop an application windows phone 7. And for obvious reasons I have to validate my forms.

I usually program in WPF and uses the principle of ValidationRule. But I can not find the same principle in windows phone 7.

Hence my question, how to create a form validation.

share|improve this question
I will advertise my implementation of validation: vortexwolf.wordpress.com/2012/03/10/windows-phone-7-validation. I think it is easier to use than other implementations in the internet. – vorrtex Mar 9 '12 at 22:50

2 Answers

up vote 4 down vote accepted

Windows Phone doesn't support form validations out of the box.

Here's a blog post that describes how to roll a custom control to implement validation rules.

The way I would handle this in one of my own apps would be to put the validation logic in my model class and create an IsValid property on the model. The model class would also have an Error property with an error message describing the validation issue. My UI layer would call myModel.IsValid, and display the error message if something was wrong.

share|improve this answer
thx, I hoped a method already implemented by Microsoft – David Mar 8 '12 at 14:39

I copied the same approach that I used with Silverlight on desktops: the INotifyDataErrorInfo interface.

Here I described it more particularly, and here you can download source code of the sample project.

The simpliest example looks so:

View.xaml

<TextBox Text="{Binding SomeProperty, Mode=TwoWay, ValidatesOnNotifyDataErrors=True, NotifyOnValidationError=True}" 
         Style="{StaticResource ValidationTextBoxStyle}" />

View.xaml.cs

public MainPage()
{
    InitializeComponent();
    this.BindingValidationError += MainPage_BindingValidationError;
}

private void MainPage_BindingValidationError(object sender, ValidationErrorEventArgs e)
{
    var state = e.Action == ValidationErrorEventAction.Added ? "Invalid" : "Valid";

    VisualStateManager.GoToState((Control)e.OriginalSource, state, false);
}

ViewModel.cs

public class MainViewModel : ValidationViewModel
{
    public MainViewModel()
    {
        this.Validator.AddValidationFor(() => this.SomeProperty).NotEmpty().Show("Enter a value");
    }

    private string someProperty;

    public string SomeProperty
    {
        get { return someProperty; }
        set
        {
            someProperty = value;
            RaisePropertyChanged("SomeProperty");
        }
    }
}

It relies on lots of supplementary classes, but at the same time there are little code that you will write by yourself.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.