默认是当目标发生改变时候,通过绑定改变源时候进行校验,因为WPF认为源是安全的,如果想让源改变时候,也进行校验则设置验证规则的ValidatesOnTargetUpdated =true

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;

namespace XamlTest
{
    /// <summary>
    /// Interaction logic for Window16.xaml
    /// </summary>
    public partial class Window16 : Window
    {
        public Window16()
        {
            InitializeComponent();
            Binding b = new Binding();
            b.Source= slider;
            b.Path = new PropertyPath("Value");
            b.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
            RangeValidationRule vr = new RangeValidationRule();
            //vr.ValidatesOnTargetUpdated =true;
            b.NotifyOnValidationError = true;
            b.ValidationRules.Add(vr);
            txt.SetBinding(TextBox.TextProperty, b);
            txt.AddHandler(Validation.ErrorEvent,new RoutedEventHandler(this.ValidationError));
        }

        private void ValidationError(object sender, RoutedEventArgs e)
        {
            if (Validation.GetErrors(txt).Count>0)
            {
                txt.ToolTip = Validation.GetErrors(txt)[0].ErrorContent.ToString();
            }
        }
    }
}

最新文章

  1. 吐槽坑爹的微软win store app审核
  2. Kafka笔记
  3. 服务器控件和 viewstate
  4. Webkit CSS properties
  5. [转]How to insert a row between two rows in an existing excel with HSSF (Apache POI)
  6. 【转】实战 SSH 端口转发
  7. hdu 4602 Partition
  8. vs2010生成Dll文件并引用dll(C#)
  9. 图的BFS代码
  10. webpack前端工程化构建工具的使用
  11. 2017-2018-2 『网络对抗技术』Exp1:PC平台逆向破解 20165335
  12. css复合选择器的权重
  13. MySQL最基本的概念梳理
  14. 关于SpringCloud的微服务架构,提示502 Bad Gateway nginx/1.10.0
  15. mybatis的延迟加载、一级缓存、二级缓存
  16. Js/Bind()的认识
  17. Fragment 中 ListView绑定ContextMenu
  18. 洛谷CF868F Yet Another Minimization Problem(动态规划,决策单调性,分治)
  19. C#通过 “枚举数支持在指定类型的集合上进行简单迭代” 的概念获取List的一种方式
  20. Oracle创建表及管理表

热门文章

  1. Fragment之一:基本原理 分类: H1_ANDROID 2013-11-18 14:15 1642人阅读 评论(0) 收藏
  2. php 过滤js字符串代码
  3. 有关下拉列表、复选框、单选按钮、iframe等jquery处理方法
  4. swf loading 自身
  5. 细说Oracle中NULL值
  6. 【转】Boost.Python
  7. CoreLocation定位
  8. erlang分布式入门(一)-ping pong
  9. 【先进的算法】Lasvegas算法3SAT问题(C++实现代码)
  10. Erlang入门