《深入浅出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

相关文章

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

【区块链 + 人才服务】可信教育区块链治理系统 | FISCO BCOS应用案例

伴随着区块链技术的不断完善,其在教育信息化中的应用也在持续发展。利用区块链数据共识、不可篡改的特性, 将与教育相关的数据要素在区块链上进行存证确权,在确保数据可信的前提下,促进教育的公平、透明、开放,为教育教学质量提升赋能,实现教育数据的安全共享、高等教育体系的智慧治理。 可信教育区块链治理系统的顶层治理架构由教育部、高校、企业、学生等多方角色共同参与建设、维护,支撑教育资源共享、教学质量评估、

软考系统规划与管理师考试证书含金量高吗?

2024年软考系统规划与管理师考试报名时间节点: 报名时间:2024年上半年软考将于3月中旬陆续开始报名 考试时间:上半年5月25日到28日,下半年11月9日到12日 分数线:所有科目成绩均须达到45分以上(包括45分)方可通过考试 成绩查询:可在“中国计算机技术职业资格网”上查询软考成绩 出成绩时间:预计在11月左右 证书领取时间:一般在考试成绩公布后3~4个月,各地领取时间有所不同

系统架构师考试学习笔记第三篇——架构设计高级知识(20)通信系统架构设计理论与实践

本章知识考点:         第20课时主要学习通信系统架构设计的理论和工作中的实践。根据新版考试大纲,本课时知识点会涉及案例分析题(25分),而在历年考试中,案例题对该部分内容的考查并不多,虽在综合知识选择题目中经常考查,但分值也不高。本课时内容侧重于对知识点的记忆和理解,按照以往的出题规律,通信系统架构设计基础知识点多来源于教材内的基础网络设备、网络架构和教材外最新时事热点技术。本课时知识

计算机毕业设计 大学志愿填报系统 Java+SpringBoot+Vue 前后端分离 文档报告 代码讲解 安装调试

🍊作者:计算机编程-吉哥 🍊简介:专业从事JavaWeb程序开发,微信小程序开发,定制化项目、 源码、代码讲解、文档撰写、ppt制作。做自己喜欢的事,生活就是快乐的。 🍊心愿:点赞 👍 收藏 ⭐评论 📝 🍅 文末获取源码联系 👇🏻 精彩专栏推荐订阅 👇🏻 不然下次找不到哟~Java毕业设计项目~热门选题推荐《1000套》 目录 1.技术选型 2.开发工具 3.功能

基于 YOLOv5 的积水检测系统:打造高效智能的智慧城市应用

在城市发展中,积水问题日益严重,特别是在大雨过后,积水往往会影响交通甚至威胁人们的安全。通过现代计算机视觉技术,我们能够智能化地检测和识别积水区域,减少潜在危险。本文将介绍如何使用 YOLOv5 和 PyQt5 搭建一个积水检测系统,结合深度学习和直观的图形界面,为用户提供高效的解决方案。 源码地址: PyQt5+YoloV5 实现积水检测系统 预览: 项目背景