表格验证

时间:2012-03-08 14:04:51

标签: c# windows-phone-7

我需要开发一个应用程序Windows Phone 7。 由于显而易见的原因,我必须验证我的表格。

我通常在WPF中编程并使用ValidationRule的原则。但我在Windows Phone 7中找不到相同的原理。

因此我的问题是,如何创建表单验证。

2 个答案:

答案 0 :(得分:4)

Windows Phone不支持开箱即用的表单验证。

这是一个blog post,它描述了如何滚动自定义控件以实现验证规则。

我在自己的一个应用程序中处理这个问题的方法是将验证逻辑放在我的模型类中,并在模型上创建一个IsValid属性。模型类还将具有Error属性,并带有描述验证问题的错误消息。我的UI层将调用myModel.IsValid,并在出现错误时显示错误消息。

答案 1 :(得分:0)

我复制了我在桌面上使用Silverlight的方法:INotifyDataErrorInfo界面。

Here我更具体地描述了它,here你可以下载示例项目的源代码。

最简单的例子看起来如此:

<强> 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");
        }
    }
}

它依赖于许多补充类,但与此同时,您自己编写的代码很少。