一。校验

一般需要对target上的值进行校验。

xaml:

 <Window x:Class="WpfApplication1.MainWindow"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         Title="Simple Binding" Height="135" Width="300">
     <StackPanel x:Name="stackPanel" Background="LightBlue">
         <TextBox x:Name="textBox1" Margin="5" />
         <Slider x:Name="slider1" Minimum="0" Maximum="100" Margin="5" />
     </StackPanel>
 </Window>

写一个RangeValidationRule类

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.Windows.Controls;

 namespace WpfApplication1
 {
     class RangeValidationRule : ValidationRule
     {
         public override ValidationResult Validate(object value, System.Globalization.CultureInfo cultureInfo)
         {
             ;
             if (double.TryParse(value.ToString(), out d))
             {
                  && d <= )
                 {
                     return new ValidationResult(true, null);
                 }
             }
             return new ValidationResult(false, "Validation Failed");
         }
     }
 }

再在xaml.cs里这么写

 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.Navigation;
 using System.Windows.Shapes;
 using System.Data;
 using MySql.Data;
 using MySql.Data.Entity;
 using MySql.Data.MySqlClient;
 using System.Xml;
 using System.Xml.Linq;

 namespace WpfApplication1
 {
     /// <summary>
     /// Interaction logic for MainWindow.xaml
     /// </summary>
     public partial class MainWindow : Window
     {
         public MainWindow()
         {
             InitializeComponent();
             Binding binding = new Binding("Value") { Source = this.slider1 };
             binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
             RangeValidationRule rvr = new RangeValidationRule();
             binding.ValidationRules.Add(rvr);
             this.textBox1.SetBinding(TextBox.TextProperty, binding);
         }

     }
 }

如果在textbox里的数不在0到100范围里,其边框就会变成红色

在这里Source是slider1,target是textBox1。一般来说Source的数据都是正确的,而target的数据可能是用户输入的,有可能是不正确的,所以需要校验。上面的代码是不会对Source更新数据时进行校验的,如果说Source的数据也有可能有问题,我们就需要将校验条件的ValidatesOnTargetUpdated属性设为true

xaml:

 <Window x:Class="WpfApplication1.MainWindow"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         Title="Simple Binding" Height="135" Width="300">
     <StackPanel x:Name="stackPanel" Background="LightBlue">
         <TextBox x:Name="textBox1" Margin="5" />
         <Slider x:Name="slider1" Minimum="-10" Maximum="110" Margin="5" />
     </StackPanel>
 </Window>

xaml.cs:

 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.Navigation;
 using System.Windows.Shapes;
 using System.Data;
 using MySql.Data;
 using MySql.Data.Entity;
 using MySql.Data.MySqlClient;
 using System.Xml;
 using System.Xml.Linq;

 namespace WpfApplication1
 {
     /// <summary>
     /// Interaction logic for MainWindow.xaml
     /// </summary>
     public partial class MainWindow : Window
     {
         public MainWindow()
         {
             InitializeComponent();
             Binding binding = new Binding("Value") { Source = this.slider1 };
             binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
             RangeValidationRule rvr = new RangeValidationRule();
             rvr.ValidatesOnTargetUpdated = true;
             binding.ValidationRules.Add(rvr);
             this.textBox1.SetBinding(TextBox.TextProperty, binding);
         }

     }
 }

当slider的值小于0或者大于100时,textbox的边框就会变红,数字是不在0到100内的

如果要显示这个错误信息,需要加入侦听器,具体代码如下:

 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.Navigation;
 using System.Windows.Shapes;
 using System.Data;
 using MySql.Data;
 using MySql.Data.Entity;
 using MySql.Data.MySqlClient;
 using System.Xml;
 using System.Xml.Linq;

 namespace WpfApplication1
 {
     /// <summary>
     /// Interaction logic for MainWindow.xaml
     /// </summary>
     public partial class MainWindow : Window
     {
         public MainWindow()
         {
             InitializeComponent();
             Binding binding = new Binding("Value") { Source = this.slider1 };
             binding.UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged;
             RangeValidationRule rvr = new RangeValidationRule();
             rvr.ValidatesOnTargetUpdated = true;
             binding.ValidationRules.Add(rvr);
             binding.NotifyOnValidationError = true;
             this.textBox1.SetBinding(TextBox.TextProperty, binding);
             this.textBox1.AddHandler(Validation.ErrorEvent, new RoutedEventHandler(this.ValidationError));
         }

         private void ValidationError(object sender, RoutedEventArgs e)
         {
             )
             {
                 ].ErrorContent.ToString();
             }
         }
     }
 }

二。 转换

简单的转换比如double转string WPF已经帮我们做了,但是像image转Enum之类的需要我们自己去写,我们要写一个类实现IValueConverter接口,里面有两个函数:Convert(source—>target)和ConvertBack(target->source)

先写一个plane类

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;

 namespace WpfApplication1
 {
     public enum Category
     {
         Bomber,
         Fighter
     }
     public enum State
     {
         Available,
         Locked,
         Unknown
     }
     class Plane
     {
         public Category Category { get; set; }
         public string Name { get; set; }
         public State State { get; set; }
     }
 }

再写实现IValueConverter的类

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.Windows.Data;
 using System.Globalization;

 namespace WpfApplication1
 {
     public class CategoryToSourceConverter : IValueConverter
     {
         public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
         {
             Category c = (Category)value;
             switch(c)
             {
                 case Category.Bomber:
                     return @"\Icons\Bomber.jpg";
                 case Category.Fighter:
                     return @"\Icons\Fighter.jpg";
                 default:
                     return null;
             }
         }

         public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
         {
             throw new NotImplementedException();
         }
     }

     public class StateToNullableBoolConverter : IValueConverter
     {
         public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
         {
             State s = (State)value;
             switch(s)
             {
                 case State.Locked:
                     return false;
                 case State.Available:
                     return true;
                 case State.Unknown:
                 default:
                     return null;
             }
         }

         public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
         {
             bool? nb = (bool?)value;
             switch(nb)
             {
                 case true:
                     return State.Available;
                 case false:
                     return State.Locked;
                 case null:
                 default:
                     return State.Unknown;
             }
         }
     }
 }

xaml:

 <Window x:Class="WpfApplication1.MainWindow"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:WpfApplication1"
         Title="Simple Binding" Height="266" Width="300">
     <Window.Resources>
         <local:CategoryToSourceConverter x:Key="cts" />
         <local:StateToNullableBoolConverter x:Key="stnb" />
     </Window.Resources>
     <StackPanel x:Name="stackPanel" Background="LightBlue">
         <ListBox x:Name="listBoxPlane" Height="160" Margin="5">
             <ListBox.ItemTemplate>
                 <DataTemplate>
                     <StackPanel Orientation="Horizontal">
                         <Image Width="20" Height="20" Source="{Binding Path=Category, Converter={StaticResource cts}}"/>
                         <TextBlock Text="{Binding Path=Name}" Width="60" Margin="80"/>
                         <CheckBox IsThreeState="True" IsChecked="{Binding Path=State, Converter={StaticResource stnb}}"/>
                     </StackPanel>
                 </DataTemplate>
             </ListBox.ItemTemplate>
         </ListBox>
         <Button x:Name="buttonLoad" Content="Load" Height="25" Margin="5" Click="buttonLoad_Click" />
         <Button x:Name="buttonSave" Content="Save" Height="25" Margin="5.5" Click="buttonSave_Click" />
     </StackPanel>
 </Window>

xaml.cs

 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.Navigation;
 using System.Windows.Shapes;
 using System.Data;
 using MySql.Data;
 using MySql.Data.Entity;
 using MySql.Data.MySqlClient;
 using System.Xml;
 using System.Xml.Linq;
 using System.IO;

 namespace WpfApplication1
 {
     /// <summary>
     /// Interaction logic for MainWindow.xaml
     /// </summary>
     public partial class MainWindow : Window
     {
         public MainWindow()
         {
             InitializeComponent();
         }

         private void buttonLoad_Click(object sender, RoutedEventArgs e)
         {
             List<Plane> planeList = new List<Plane>()
             {
                 new Plane(){Category=Category.Bomber, Name="B-1", State=State.Unknown},
                 new Plane(){Category=Category.Bomber, Name="B-2", State=State.Unknown},
                 new Plane(){Category=Category.Fighter, Name="F-22", State=State.Unknown},
                 new Plane(){Category=Category.Fighter, Name="Su-47", State=State.Unknown},
                 new Plane(){Category=Category.Bomber, Name="B-52", State=State.Unknown},
                 new Plane(){Category=Category.Fighter, Name="J-10", State=State.Unknown},
             };
             this.listBoxPlane.ItemsSource = planeList;
         }

         private void buttonSave_Click(object sender, RoutedEventArgs e)
         {
             StringBuilder sb = new StringBuilder();
             foreach(Plane p in listBoxPlane.Items)
             {
                 sb.AppendLine(string.Format("Category={0}, Name={1}, State={2}", p.Category, p.Name, p.State));
             }
             File.WriteAllText(@"C:\Users\Administrator\Desktop\Demo\WpfApplication1\WpfApplication1\PlaneList.txt", sb.ToString());
         }
     }
 }

三。MultiBinding

这个例子验证textBox1和textBox2是不是相同,textBox3和textBox4是不是相同,如果相同则button is enabled

Converter:

 using System;
 using System.Collections.Generic;
 using System.Linq;
 using System.Text;
 using System.Threading.Tasks;
 using System.Windows.Data;
 using System.Globalization;

 namespace WpfApplication1
 {
     class LoginMultiBindingConverter : IMultiValueConverter
     {
         public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
         {
             if (!values.Cast<string>().Any(text => string.IsNullOrEmpty(text))
                 && values[].ToString() == values[].ToString()
                 && values[].ToString() == values[].ToString())
             {
                 return true;
             }
             return false;
         }

         public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
         {
             throw new NotImplementedException();
         }
     }
 }

xaml:

 <Window x:Class="WpfApplication1.MainWindow"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:WpfApplication1"
         Title="Simple Binding" Height="200" Width="300">
     <StackPanel x:Name="stackPanel" Background="LightBlue">
         <TextBox x:Name="textBox1" Height="23" Margin="5" />
         <TextBox x:Name="textBox2" Height="23" Margin="5" />
         <TextBox x:Name="textBox3" Height="23" Margin="5" />
         <TextBox x:Name="textBox4" Height="23" Margin="5" />
         <Button x:Name="button1" Content="Submit" Width="80" Margin="5"/>
     </StackPanel>
 </Window>

xaml.cs:

 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.Navigation;
 using System.Windows.Shapes;
 using System.Data;
 using MySql.Data;
 using MySql.Data.Entity;
 using MySql.Data.MySqlClient;
 using System.Xml;
 using System.Xml.Linq;
 using System.IO;

 namespace WpfApplication1
 {
     /// <summary>
     /// Interaction logic for MainWindow.xaml
     /// </summary>
     public partial class MainWindow : Window
     {
         public MainWindow()
         {
             InitializeComponent();
             this.SetMultiBinding();
         }

         private void SetMultiBinding()
         {
             Binding b1 = new Binding("Text") { Source = this.textBox1 };
             Binding b2 = new Binding("Text") { Source = this.textBox2 };
             Binding b3 = new Binding("Text") { Source = this.textBox3 };
             Binding b4 = new Binding("Text") { Source = this.textBox4 };
             MultiBinding mb = new MultiBinding() { Mode = BindingMode.OneWay };
             mb.Bindings.Add(b1);
             mb.Bindings.Add(b2);
             mb.Bindings.Add(b3);
             mb.Bindings.Add(b4);
             mb.Converter = new LoginMultiBindingConverter();
             this.button1.SetBinding(Button.IsEnabledProperty, mb);
         }
     }
 }

.NET: WPF Binding对数据的校验和转换以及多路Binding的更多相关文章

  1. WPF 基础 - Binding 对数据的转换和校验

    1. Binding 对数据的转换和校验 Binding 中,有检验和转换关卡. 1.1 数据校验 源码: namespace System.Windows.Data { public class B ...

  2. WPF 之 Binding 对数据的校验与转换(三)

    一.前言 ​ Binding 的作用就是架在 Source 和 Target 之间的桥梁,数据可以在这座桥梁的帮助下来流通.就像现实中的桥梁会设置一些关卡进行安检一样,Binding 这座桥上也可以设 ...

  3. WPF中的数据验证

    数据验证 WPF的Binding使得数据能够在数据源和目标之间流通,在数据流通的中间,便能够对数据做一些处理. 数据转换和数据验证便是在数据从源到目标 or 从目标到源 的时候对数据的验证和转换. V ...

  4. 背水一战 Windows 10 (20) - 绑定: DataContextChanged, UpdateSourceTrigger, 对绑定的数据做自定义转换

    [源码下载] 背水一战 Windows 10 (20) - 绑定: DataContextChanged, UpdateSourceTrigger, 对绑定的数据做自定义转换 作者:webabcd 介 ...

  5. WPF基础知识、界面布局及控件Binding(转)

    WPF是和WinForm对应的,而其核心是数据驱动事件,在开发中显示的是UI界面和逻辑关系相分离的一种开放语言.UI界面是在XAML语言环境下开发人员可以进行一些自主设计的前台界面,逻辑关系还是基于c ...

  6. WPF的ComboBox 数据模板自定义

    WPF的ComboBox 有些时候不能满足用户需求,需要对数据内容和样式进行自定义,下面就简要介绍一下用数据模板(DataTemplate)的方式对ComboBox 内容进行定制: 原型设计如下: 步 ...

  7. 绑定: DataContextChanged, UpdateSourceTrigger, 对绑定的数据做自定义转换

    介绍背水一战 Windows 10 之 绑定 DataContextChanged - FrameworkElement 的 DataContext 发生变化时触发的事件 UpdateSourceTr ...

  8. WPF基础知识、界面布局及控件Binding

    WPF是和WinForm对应的,而其核心是数据驱动事件,在开发中显示的是UI界面和逻辑关系相分离的一种开放语言.UI界面是在XAML语言环境下开发人员可以进行一些自主设计的前台界面,逻辑关系还是基于c ...

  9. WPF中的数据模板(DataTemplate)(转)

    原文地址 http://www.cnblogs.com/zhouyinhui/archive/2007/03/30/694388.html WPF中的数据模板(DataTemplate)        ...

随机推荐

  1. App之百度云推送

    集成SDK 下载最新的Android SDK压缩包并解压,在新建工程或已有工程中增加百度云推送功能. 我下载的是 ,里面有一个同名的文件夹,文件夹中有 导入云推送jar包和so文件: 将解压后的lib ...

  2. (IOS)Swift Music 程序分析

    本文主要分享下楼主在学习Swift编程过程中,对GitHub上的一个开源App Swift Music的研究心得. 项目地址:https://github.com/xujiyao123/SwiftMu ...

  3. Windows下查看机器监听端口

    1.查看所有端口占用情况 在开始-运行-cmd,输入:netstat –ano可以查看所有进程 2.查看指定端口的占用情况      netstat -an |findstr :21 

  4. jquery mobile 方法收集.

    1.在列表项和按钮上禁用文本截断     如果你的列表项或者按钮上是一个很长的文本,它将会被jQuery Mobile自动截断,要禁用这个截断设置,需要在CSS选择器上添加属性"white- ...

  5. Qt 之 去除窗口部件被选中后的焦点虚线框(设置Qt::NoFocus即可)

    http://blog.csdn.net/goforwardtostep/article/details/53420529

  6. 使用VC2005编译真正的静态Qt程序

    首先,你应该该知道什么叫静态引用编译.什么叫动态引用编译.我这里只是简单的提提,具体的可以google一下. 动态引用编译,是指相关的库,以dll的形式引用库.动态编译的Exe程序尺寸比较小,因为相关 ...

  7. SpringMVC接收checkbox传值

    Controller方法形参接收checkbox的值,既可以用String,也可以用String[]. 字符串数组接收的测试代码如下: @Controller @RequestMapping(&quo ...

  8. proxy解析

    知其所以然 本文不是教程向,倾向于分析科学上网的一些原理.知其所以然,才能更好地使用工具,也可以创作出自己的工具. 科学上网的工具很多,八仙过海,各显神通,而且综合了各种技术.尝试从以下四个方面来解析 ...

  9. Magento的迁移方法

    Magento有很多配置内容,比如说CMS配置页.Static Stock.多语言配置等等,所以做数据迁移很有必要性,下面就说说如何做迁移 这个技术文章是从网上整理的,不过一个很重要的点被疏忽了,我在 ...

  10. 树莓派连接wifi

    使用树莓派,通过无线网卡连接wifi,再通过远程桌面或者ssh的连接树莓派比较方便,本文记录树莓派wifi如何设置. 参考链接: http://www.jianshu.com/p/b42e8d3df4 ...