当前位置: 首页 > 知识库问答 >
问题:

如何将验证属性应用于WPF

聂迪
2023-03-14

在我的项目中,我有这个窗口来添加新的contact对象

我的问题是如何像在ASP.NET MVC中那样将此验证属性应用到WPF窗口。 例如[Required]和一些[ReulareXpression()]

<Window x:Class="WPFClient.AddNewContact"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="AddNewContact" Height="401" Width="496" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:my="clr-namespace:WPFClient.PhoneBookServiceReference" Loaded="Window_Loaded">
    <Window.Resources>
    </Window.Resources>
    <Grid Height="355" Width="474">
        <GroupBox Header="Add Contact" Margin="0,0,0,49">
            <Grid HorizontalAlignment="Left" Margin="21,21,0,0" Name="grid1" VerticalAlignment="Top" Height="198" Width="365">
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="Auto" />
                <ColumnDefinition Width="194" />
                    <ColumnDefinition Width="64*" />
                </Grid.ColumnDefinitions>
            <Grid.RowDefinitions>
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="Auto" />
                <RowDefinition Height="53" />
                    <RowDefinition Height="17*" />
                </Grid.RowDefinitions>

                <Label Content="Name:" Grid.Column="0" Grid.Row="0" HorizontalAlignment="Left" Margin="3" VerticalAlignment="Center" />
                <TextBox Grid.Column="1" Grid.Row="0" Height="23" HorizontalAlignment="Left" Margin="0,3,0,6" Name="nameTextBox" VerticalAlignment="Center" Width="120" />

                <Label Content="Email:" Grid.Column="0" Grid.Row="1" HorizontalAlignment="Left" Margin="3" VerticalAlignment="Center" />
                <TextBox Grid.Column="1" Grid.Row="1" Height="23" HorizontalAlignment="Left" Margin="0,3,0,6" Name="emailTextBox" VerticalAlignment="Center" Width="120" />

                <Label Content="Phone Number:" Grid.Column="0" Grid.Row="2" HorizontalAlignment="Left" Margin="3" VerticalAlignment="Center" />
                <TextBox Grid.Column="1" Grid.Row="2" Height="23" HorizontalAlignment="Left" Margin="0,3,0,6" Name="phoneNumberTextBox" VerticalAlignment="Center" Width="120" />

                <Label Content="Mobil:" Grid.Column="0" Grid.Row="3" HorizontalAlignment="Left" Margin="3" VerticalAlignment="Center" />
                <TextBox Grid.Column="1" Grid.Row="3" Height="23" HorizontalAlignment="Left" Margin="0,3,0,6" Name="mobilTextBox" VerticalAlignment="Center" Width="120" />


                <Label Content="Address:" Grid.Column="0" Grid.Row="4" HorizontalAlignment="Left" Margin="3" VerticalAlignment="Center" />
                <TextBox  Grid.Row="4" Grid.Column="1" Height="39" HorizontalAlignment="Left" Margin="0,0,0,14" Name="addressTextBox" 
                             VerticalAlignment="Center" Width="194" TextWrapping="Wrap" VerticalScrollBarVisibility="Visible" AcceptsReturn="True"  />
            </Grid>
        </GroupBox>
             <Button Content="Add" Height="23" HorizontalAlignment="Left" Margin="24,273,0,0" Name="btnAdd" VerticalAlignment="Top" Width="75" Click="btnAdd_Click" />
        <Button Content="Cancel" Height="23" HorizontalAlignment="Left" Margin="123,273,0,0" Name="btnCancel" VerticalAlignment="Top" Width="75" Click="btnCancel_Click" />

    </Grid>
</Window>

我有这个ModelView类来映射Contact对象

 public class MContact
 {
      [Required(ErrorMessage = " Name is required.")]
      [StringLength(50, ErrorMessage = "No more than 50 characters")]
      [Display(Name = "Name")]
      public string Name { get; set; }


      [Required(ErrorMessage = "Email is required.")]
      [StringLength(50, ErrorMessage = "No more than 50 characters")]
      [RegularExpression(".+\\@.+\\..+", ErrorMessage = "Valid email required e.g. abc@xyz.com")]
      public string Email { get; set; }


      [Display(Name = "Phone Number")]
      [Required]
      [RegularExpression(@"^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$",
            ErrorMessage = "Entered phone format is not valid.")]
      public string PhoneNumber { get; set; }

      public string Address { get; set; }
      [RegularExpression(@"^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$",
    ErrorMessage = "Entered phone format is not valid.")]
      public string Mobil { get; set; }

 }

共有3个答案

逄宁
2023-03-14

从WPF4.5开始,您可以在模型上实现InoTifyDataErrorInfo,并且WPF控件将绑定到验证消息。

方通
2023-03-14

如果你想走这条路,我建议你看看下面的文章。 它都以IDataErrorInfo为中心。

MSDN:如何:在自定义对象上实现验证逻辑

CodeProject:WPF MVVM中基于属性的验证

安坚诚
2023-03-14

>

  • 创建ValidatorBase

    它实现了标准的。NET IDataErrorInfo在WPF下工作,但也应该与Windows窗体一起工作。

    public abstract class ValidatorBase : IDataErrorInfo
    {
      string IDataErrorInfo.Error
      {
        get
        {
          throw new NotSupportedException("IDataErrorInfo.Error is not supported, use IDataErrorInfo.this[propertyName] instead.");
        }
      }
      string IDataErrorInfo.this[string propertyName]
      {
        get
        {
          if (string.IsNullOrEmpty(propertyName))
          {
            throw new ArgumentException("Invalid property name", propertyName);
          }
          string error = string.Empty;
          var value = GetValue(propertyName);
          var results = new List<System.ComponentModel.DataAnnotations.ValidationResult>(1);
          var result = Validator.TryValidateProperty(
              value,
              new ValidationContext(this, null, null)
              {
                MemberName = propertyName
              },
              results);
          if (!result)
          {
            var validationResult = results.First();
            error = validationResult.ErrorMessage;
          }
          return error;
        }
      }
      private object GetValue(string propertyName)
      {
        PropertyInfo propInfo = GetType().GetProperty(propertyName);
        return propInfo.GetValue(this);
      }
    }
    
    public class MContact : ValidatorBase
    {
        [Required(ErrorMessage = " Name is required.")]
        [StringLength(50, ErrorMessage = "No more than 50 characters")]
        [Display(Name = "Name")]
        public string Name { get; set; }
    
    <TextBox Text="{Binding Path=Address,
                            UpdateSourceTrigger=PropertyChanged,                 
                            ValidatesOnDataErrors=True}" />
    
    <Window.Resources>
        <Style TargetType="{x:Type TextBox}">
            <Setter Property="ToolTip">
                <Setter.Value>
                    <Binding RelativeSource="{RelativeSource Self}" Path="(Validation.Errors)[0].ErrorContent" />
                </Setter.Value>
            </Setter>
            <Setter Property="Margin" Value="4,4" />
        </Style>
    </Window.Resources>
    

    代码在Github上:

    https://github.com/emmanueldurin/wpf-attribute-validation

    灵感来自:

    https://code.msdn.microsoft.com/windowsdesktop/validation-in-mvvm-using-12dafef3

    快乐实现:-)

  •  类似资料:
    • 问题内容: 我正在使用Jackson JSON库将一些JSON对象转换为POJO类。问题是,当我使用具有重复属性的JSON对象时,例如: 杰克逊报告最后一封电子邮件对,然后解析该对象。 我从JSON语法中获悉了对象中的重复键吗?反序列化具有重复属性的JSON对象时发生的情况取决于库的实现,是抛出错误还是将最后一个用于重复键。 尽管跟踪所有属性会产生开销,但是在这种情况下,是否有任何方法可以告诉Ja

    • 晚上好,我正在尝试在下面的场景中使用Hibernate验证器:

    • 我一直在努力使我的JSON模式正确。我有一个属性,我必须根据它来确定所需的属性。下面是我的示例,我希望通过验证,因为不存在。 这是我希望通过验证的JSON 类似地,如果是,那么上述两个JSON的验证都应该通过。

    • 我正在寻找一个好的方法或框架,帮助我验证一个对象的属性。我从另一个库中获取对象,因此不能更改对象本身的任何内容。 null

    • 问题内容: 我想以一种人类可读的方式将.NET对象序列化为JSON,但是我想对对象的属性还是数组的元素以自己的一行结束进行更多控制。 目前,我正在使用JSON.NET的方法进行序列化,但似乎只能为整个对象全局应用(单个行中的所有元素)或(单个行中的所有元素,没有任何空格)格式化规则。有没有一种方法可以默认使用全局缩进,但是对于某些类或属性(例如,使用属性或其他参数)将其关闭? 为了帮助您理解问题,

    • 我正在使用Hibernate@NotNull验证器,我正在尝试创建自定义消息来告诉用户哪个字段在空时产生了错误。类似这样的东西: (这将在我的ValidationMessages.properties文件中)。 其中,{0}应该是通过以下方式传递给验证程序的字段名: 我有办法做到吗?

    • 假设我有以下课程: 是否可以通过“MyProduct”类验证“code”属性?比如:

    • 我们正在构建一个需要精确性的apiendpoint。我们希望对POST/PUT到服务器的参数实施严格的验证。 如果api用户发送了一个不受支持的对(例如,我们允许参数[first\u name,last\u name],并且用户包含一个不受支持的参数[country]),我们希望验证失败。 已尝试构建名为(用作)的自定义验证器,但要使其在数组中可用,必须将其应用于嵌套/子属性列表的父级(…因为我们