《深入浅出WPF》读书笔记.6binding系统(下)

2024-08-25 09:04

本文主要是介绍《深入浅出WPF》读书笔记.6binding系统(下),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

《深入浅出WPF》读书笔记.6binding系统(下)

背景

主要讲数据校验和数据转换以及multibinding

代码

binding的数据校验

<Window x:Class="BindingSysDemo.ValidationRulesDemo"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:BindingSysDemo"mc:Ignorable="d"Title="ValidationRulesDemo" Height="200" Width="400"><StackPanel VerticalAlignment="Center"><TextBox x:Name="tb1" Margin="5"></TextBox><Slider x:Name="sld1" Minimum="-10" Maximum="110" Margin="5"></Slider></StackPanel>
</Window>
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 BindingSysDemo
{/// <summary>/// ValidationRulesDemo.xaml 的交互逻辑/// </summary>public partial class ValidationRulesDemo : Window{public ValidationRulesDemo(){InitializeComponent();Binding binding = new Binding("Value") { Source = this.sld1, UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged };RangeValidationRule rule = new RangeValidationRule();//此参数用来校验source数据rule.ValidatesOnTargetUpdated = true;binding.ValidationRules.Add(rule);//通过路由事件获取校验的报错信息//信号在UI树上传递的过程乘坐路由事件binding.NotifyOnValidationError = true;this.tb1.SetBinding(TextBox.TextProperty, binding);//监听校验失败错误this.tb1.AddHandler(Validation.ErrorEvent, new RoutedEventHandler(this.ValidationError));}private void ValidationError(object sender, RoutedEventArgs e){if (Validation.GetErrors(this.tb1).Count > 0){this.tb1.ToolTip = Validation.GetErrors(this.tb1)[0].ErrorContent.ToString();}}}
}
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Controls;namespace BindingSysDemo
{public class RangeValidationRule : ValidationRule{public override ValidationResult Validate(object value, CultureInfo cultureInfo){//throw new NotImplementedException();double d = 0;if (double.TryParse(value.ToString(), out d)){if (d >= 0 && d <= 100){return new ValidationResult(true, null);}}return new ValidationResult(false, "Validation failed!");}}
}

binding的数据转换

<Window x:Class="BindingSysDemo.BindingConverterDemo"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:BindingSysDemo"mc:Ignorable="d"Title="BindingConverterDemo" Height="500" Width="600"><Window.Resources><local:Category2SourceConverter x:Key="c2s"></local:Category2SourceConverter><local:State2NullableBoolConverter x:Key="s2b"></local:State2NullableBoolConverter></Window.Resources><StackPanel Background="AliceBlue"><ListBox x:Name="listBoxPlane" Height="300" Margin="5"><ListBox.ItemTemplate><DataTemplate><StackPanel Orientation="Horizontal"><Image Width="40" Height="20" Source="{Binding Path=Category, Converter={StaticResource c2s}}"></Image><TextBlock Text="{Binding Path=Name}" Width="60" Margin="80,0"></TextBlock><CheckBox IsThreeState="True" IsChecked="{Binding Path=State, Converter={StaticResource s2b}}"></CheckBox></StackPanel></DataTemplate></ListBox.ItemTemplate></ListBox><Button x:Name="btnLoad" Content="Load" Height="25" Margin="5" Click="btnLoad_Click"></Button><Button x:Name="btnSave" Content="Save" Height="25" Margin="5" Click="btnSave_Click"></Button></StackPanel>
</Window>
using System;
using System.Collections.Generic;
using System.IO;
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 BindingSysDemo
{/// <summary>/// BindingConverterDemo.xaml 的交互逻辑/// </summary>public partial class BindingConverterDemo : Window{public BindingConverterDemo(){InitializeComponent();}private void btnLoad_Click(object sender, RoutedEventArgs e){List<Plane> planes = 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 = planes;}private void btnSave_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(AppDomain.CurrentDomain.BaseDirectory + "PlaneList.txt", sb.ToString());MessageBox.Show("保存成功!");}}public enum Category{Bomber,Fighter}public enum State{Available,Locked,Unknown}public class Plane{public Category Category { get; set; }public State State { get; set; }public string Name { get; set; }}}
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Net.Http.Headers;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Data;namespace BindingSysDemo
{public class Category2SourceConverter : IValueConverter{//将Category转换成Uripublic object Convert(object value, Type targetType, object parameter, CultureInfo culture){Category category = (Category)value;switch (category){case Category.Fighter:return @"\Icon\Fighter.png";case Category.Bomber:return @"\Icon\Bomber.png";default:return null;}}//不会被调用public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture){throw new NotImplementedException();}}public class State2NullableBoolConverter : IValueConverter{//将State转换成boolpublic object Convert(object value, Type targetType, object parameter, CultureInfo culture){State state = (State)value;switch (state){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;}}}
}

multibinding

当页面显示信息不仅由一个控件来决定,就可以使用multibinding。凡是使用binding的地方都可以使用multibinding

<Window x:Class="BindingSysDemo.MultiBindingDemo"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"xmlns:local="clr-namespace:BindingSysDemo"mc:Ignorable="d"Title="MultiBindingDemo" Height="400" Width="600"><StackPanel><TextBox x:Name="tb1" Height="23" Margin="5"></TextBox><TextBox x:Name="tb2" Height="23" Margin="5"></TextBox><TextBox x:Name="tb3" Height="23" Margin="5"></TextBox><TextBox x:Name="tb4" Height="23" Margin="5"></TextBox><Button x:Name="btn1" Content="Submit" Width="80" Margin="5"></Button></StackPanel>
</Window>
using System;
using System.Collections.Generic;
using System.Globalization;
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 BindingSysDemo
{/// <summary>/// MultiBindingDemo.xaml 的交互逻辑/// </summary>public partial class MultiBindingDemo : Window{public MultiBindingDemo(){InitializeComponent();this.SetMultiBinding();}private void SetMultiBinding(){//准备基础bindingBinding b1 = new Binding("Text") { Source = this.tb1 };Binding b2 = new Binding("Text") { Source = this.tb2 };Binding b3 = new Binding("Text") { Source = this.tb3 };Binding b4 = new Binding("Text") { Source = this.tb4 };//multibindingMultiBinding mb = new MultiBinding();mb.Bindings.Add(b1);mb.Bindings.Add(b2);mb.Bindings.Add(b3);mb.Bindings.Add(b4);mb.Converter = new LoginMultiBindingConverter();this.btn1.SetBinding(Button.IsEnabledProperty, mb);}}public class LoginMultiBindingConverter : IMultiValueConverter{public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture){if (!values.Cast<string>().Any(o => string.IsNullOrEmpty(o)) && values[0].ToString() == values[2].ToString()&& values[1].ToString() == values[3].ToString()){return true;}return false;}public object[] ConvertBack(object value, Type[] targetType, object parameter, CultureInfo culture){throw new NotImplementedException();}}}

git代码

GitHub - wanghuayu-hub2021/WpfBookDemo: 深入浅出WPF的demo


这章完结了,顺手点个赞老铁。

这篇关于《深入浅出WPF》读书笔记.6binding系统(下)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1105125

相关文章

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Linux系统中卸载与安装JDK的详细教程

《Linux系统中卸载与安装JDK的详细教程》本文详细介绍了如何在Linux系统中通过Xshell和Xftp工具连接与传输文件,然后进行JDK的安装与卸载,安装步骤包括连接Linux、传输JDK安装包... 目录1、卸载1.1 linux删除自带的JDK1.2 Linux上卸载自己安装的JDK2、安装2.1

Linux系统之主机网络配置方式

《Linux系统之主机网络配置方式》:本文主要介绍Linux系统之主机网络配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、查看主机的网络参数1、查看主机名2、查看IP地址3、查看网关4、查看DNS二、配置网卡1、修改网卡配置文件2、nmcli工具【通用

Linux系统之dns域名解析全过程

《Linux系统之dns域名解析全过程》:本文主要介绍Linux系统之dns域名解析全过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、dns域名解析介绍1、DNS核心概念1.1 区域 zone1.2 记录 record二、DNS服务的配置1、正向解析的配置

Linux系统中配置静态IP地址的详细步骤

《Linux系统中配置静态IP地址的详细步骤》本文详细介绍了在Linux系统中配置静态IP地址的五个步骤,包括打开终端、编辑网络配置文件、配置IP地址、保存并重启网络服务,这对于系统管理员和新手都极具... 目录步骤一:打开终端步骤二:编辑网络配置文件步骤三:配置静态IP地址步骤四:保存并关闭文件步骤五:重

Windows系统下如何查找JDK的安装路径

《Windows系统下如何查找JDK的安装路径》:本文主要介绍Windows系统下如何查找JDK的安装路径,文中介绍了三种方法,分别是通过命令行检查、使用verbose选项查找jre目录、以及查看... 目录一、确认是否安装了JDK二、查找路径三、另外一种方式如果很久之前安装了JDK,或者在别人的电脑上,想

Linux系统之authconfig命令的使用解读

《Linux系统之authconfig命令的使用解读》authconfig是一个用于配置Linux系统身份验证和账户管理设置的命令行工具,主要用于RedHat系列的Linux发行版,它提供了一系列选项... 目录linux authconfig命令的使用基本语法常用选项示例总结Linux authconfi

Nginx配置系统服务&设置环境变量方式

《Nginx配置系统服务&设置环境变量方式》本文介绍了如何将Nginx配置为系统服务并设置环境变量,以便更方便地对Nginx进行操作,通过配置系统服务,可以使用系统命令来启动、停止或重新加载Nginx... 目录1.Nginx操作问题2.配置系统服android务3.设置环境变量总结1.Nginx操作问题

CSS3 最强二维布局系统之Grid 网格布局

《CSS3最强二维布局系统之Grid网格布局》CS3的Grid网格布局是目前最强的二维布局系统,可以同时对列和行进行处理,将网页划分成一个个网格,可以任意组合不同的网格,做出各种各样的布局,本文介... 深入学习 css3 目前最强大的布局系统 Grid 网格布局Grid 网格布局的基本认识Grid 网

在不同系统间迁移Python程序的方法与教程

《在不同系统间迁移Python程序的方法与教程》本文介绍了几种将Windows上编写的Python程序迁移到Linux服务器上的方法,包括使用虚拟环境和依赖冻结、容器化技术(如Docker)、使用An... 目录使用虚拟环境和依赖冻结1. 创建虚拟环境2. 冻结依赖使用容器化技术(如 docker)1. 创