Part I – Common Examples

Basic Binding  
{Binding}  Bind to current DataContext.
{Binding Name}  Bind to the “Name” proeprty of the current DataContext. 
{Bindind Name.Length} Bind to the Length property of the object in the Name property of the current DataContext.
{Binding ElementName=SomeTextBox, Path=Text} Bind to the “Text” property of the element XAML element with name=”SomeTextBox” or x:Name=”SomeTextBox”.
   
XML Binding  
{Binding Source={StaticResource BooksData} XPath=/books/book}

Bind the result of XPath query “/books/book” from the XML in the XmlDataProvider in a parent’s “Resources” elememt with x:Key=”BooksData”.

{Binding XPath=@name}  Bind to the result of an XPath query run on the XML node in the DataContext (for example in an ItemControl’s DataTemplate when the ItemsControl.ItemsSource is bound to an XML data source).
   
Relative Source Binding  
{Binding RelativeSource={RelativeSource Self}} Bind to the target element.
{Binding RelativeSource={RelativeSource Self}, Path=Name} Bind to the “Name” property of the target element.
{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Window}}, Path=Title} Bind to the title of the parent window
{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ItemsControl}, AncestorLevel=2}, Path=Name} Bind the the name of the 2nd parent of type ItemsControl.
{Binding RelativeSource={RelativeSource TemplatedParent}, Path=Name} Inside a control template, bind to the name property of the element the template is applied to.
{TemplateBinding Name} Shortcut for the previous example.
   
Collection Current Item Binding  
{Binding /} Bind to the current item in the DataContext (when DataContext is a collection)
{Binding AllItems/} Bind to the current item in the “AllItems“ property of the DataContext {
{Binding AllItems/Name}

Bind to the “Name” property of the current item in the “AllItems“ property of the DataContext *

* Someone has to manage the collection current item, you can do it in code using the CollectionView class or set IsSynchronizedWithCurrentItem="True" on a control that supports it (like ListBox) and is bound to the same collection.

Part II – Alphabetical list of all Binding’s properties

Property Description
BindingGroupName (3.5sp1) The name of the BindingGroup to which this binding belongs. A BindingGroup is used to validate multiple bindings together (for example when multiple changes should be submitted all at once).
BindsDirectlyToSource When using a DataSourceProvider derived class (for example a ObjectDataProvider) setting this property to true will bind to the data source provider object itself, leaving it false will bind to the data contained in the data source.
Converter The converter to use, usually you create the converter in a parent element’s Resources element and reference it using a {StaticResource name) or create the converter as a static field and reference it with {x:Static ns:class.field}
ConverterCulture The culture passed to the converter.
ConverterParameter The parameter passed to the converter
ElementName Element name, when binding to an element in the same XAML scope. Can’t be used if RelativeSource or Source is set.
FallbackValue Value to use when the Binding encounters an error
IsAsync Use when the property’s get accessor takes a long time, to avoid blocking the UI thread, While waiting for the value to arrive, the binding reports the FallbackValue.
Mode

Direction of binding, possible options:

  • TwoWay - updates the target property or the source property whenever the other one changes.  
  • OneWay - updates the target property only when the source property changes.  
  • OneTime - updates the target property only when the application starts or when the DataContext undergoes a change.  
  • OneWayToSource - updates the source property when the target property changes, useful the target property is not a dependency property – put the binding on what would normally be the source and point it to the target.  
  • Default - causes the default Mode value of target property to be used.
NotifyOnSourceUpdated Raise the SourceUpdated event when a value is transferred from the binding target to the binding source.
NotifyOnTargetUpdated Raise the TargetUpdated event when a value is transferred from the binding source to the binding target.
NotifyOnValidationError Raise the Error attached event on the bound object.
Path Source property.
RelativeSource

Binding source relative to the target, possible options: 

  • {x:Static RelativeSource.Self} or {RelativeSource Self} bind to target element. 
  • {RelativeSource FindAncestor, AncestorType={x:Type TypeName}} Bind to the first parent of type TypeName 
  • {RelativeSource FindAncestor, AncestorType={x:Type TypeName}, AnsestorLevel=n} Bind to the nth parent of type TypeName 
  • {RelativeSource TemplatedParent} bind to the element this template is applied to (useful in control templates, consider using TemplateBinding instead.

Can’t be used if ElementName or Source is set.

 Source  Object to use as the binding source. Can’t be used if ElementName or RelativeSource is se
 StringFormat (3.5sp1)  Format string to use when converting the bound value to a string. Works only if the target property is of type string.
 UpdateSourceExceptionFilter  Custom logic for handling exceptions that the binding engine encounters. Only if you add an ExceptionValidationRule to ValidationRules or set ValidatesOnExceptions.
 UpdateSourceTrigger

timing of binding source updates, possible options: 

  • Default - The default UpdateSourceTrigger value of the binding target property. The default is usually PropertyChanged, while the Text property is LostFocus.
  • PropertyChanged - Updates the binding source immediately whenever the binding target property changes.   
  • LostFocus - Updates the binding source whenever the binding target element loses focus.   
  • Explicit - Updates the binding source only when you call the UpdateSource method.
ValidatesOnDataErrors (3.5sp1) Use IDataErrorInfo when validating.
ValidatesOnExceptions (3.5sp1) Treat exceptions as validation failures.
ValidationRules Collection of rules that check the validity of the user input.
 XPath  XPath query that returns the value on the XML binding source to use. Top

The Internationalization Fix

  By default, when you use data binding and the target property is a string, WPF will format your value using the US English culture, to use the correct setting the user seletceted in the control panel add the following code before loading any GUI (the Application.Startup event is a good place)

    FrameworkElement.LanguageProperty.OverrideMetadata(

        typeof(FrameworkElement),

    new FrameworkPropertyMetadata(

        XmlLanguage.GetLanguage( CultureInfo.CurrentCulture.IetfLanguageTag)));

WPF 绑定备忘单的更多相关文章

  1. Cheat (tldr, bropages) - Unix命令用法备忘单

    cheat 是一个Unix命令行小工具,用来查询一些常用命令的惯用法(我们都知道,man page阅读起来太累了,常常是跳到最后去看 examples,但并不是所有man pages里面都有examp ...

  2. Nmap备忘单:从探索到漏洞利用(Part 5)

    这是备忘单的最后一部分,在这里主要讲述漏洞评估和渗透测试. 数据库审计 列出数据库名称 nmap -sV --script=mysql-databases 192.168.195.130 上图并没有显 ...

  3. Nmap备忘单:从探索到漏洞利用(Part 4)

    这是我们的Nmap备忘单的第四部分(Part 1. Part 2. Part 3).本文中我们将讨论更多东西关于扫描防火墙,IDS / IPS 逃逸,Web服务器渗透测试等.在此之前,我们应该了解一下 ...

  4. Nmap备忘单:从探索到漏洞利用(Part 2)

    这是我们的第二期NMAP备忘单(第一期在此).基本上,我们将讨论一些高级NMAP扫描的技术,我们将进行一个中间人攻击(MITM).现在,游戏开始了. TCP SYN扫描 SYN扫描是默认的且最流行的扫 ...

  5. Objective-C教程备忘单

    终极版本的Objective-C教程备忘单帮助你进行iOS开发. 想开始创建你的第一个iOS应用程序么?那么看一下这篇很棒的教程吧:Create your first iOS 7 Hello Worl ...

  6. HTML5属性备忘单

    在网上闲逛的时候看到了文章,感觉总结的这个html5文章,决定转载过来,在排版的时候也帮助自己重新梳理复习一遍.毕竟学习基础最重要. by zhangxinxu from http://www.zha ...

  7. 【WPF开发备忘】使用MVVM模式开发中列表控件内的按钮事件无法触发解决方法

    实际使用MVVM进行WPF开发的时候,可能会用到列表控件中每行一个编辑或删除按钮,这时直接去绑定,发现无法响应: <DataGridTemplateColumn Header="操作& ...

  8. OWASP WEB会话管理备忘单 阅读笔记

    https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Session_ID_Properties 会话简介 HTTP是一种无状态 ...

  9. 跨站脚本(XSS)备忘单-2019版

    这是一份跨站脚本(XSS)备忘录,收集了大量的XSS攻击向量,包含了各种事件处理.通讯协议.特殊属性.限制字符.编码方式.沙箱逃逸等技巧,可以帮助渗透测试人员绕过WAF和过滤机制. 译者注:原文由Po ...

随机推荐

  1. windows7安装django并创建第一个应用

    1.安装django 1.1.下载Django包 https://www.djangoproject.com/download/https://www.djangoproject.com/m/rele ...

  2. 解决一个java facets问题

    经常被一个问题困扰: JavaServer Faces 2.2 can not be installed : One or more constraints have not been satisfi ...

  3. ffmpeg C++程序编译时报__cxa_end_catch错误

    解决方法在编译sh中加上 -lsupc++ 即可. 2.STL模块函数找不到,链接失败stdc++/include/bits/stl_list.h:466: error: undefined refe ...

  4. C#细说多线程(下)

    本文主要从线程的基础用法,CLR线程池当中工作者线程与I/O线程的开发,并行操作PLINQ等多个方面介绍多线程的开发. 其中委托的BeginInvoke方法以及回调函数最为常用.而 I/O线程可能容易 ...

  5. linux下启动springboot服务

    错误日志 SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder] . __ ...

  6. Log4j(2)--日志等级

    Log4j根据日志信息的重要程度,分OFF.FATAL.ERROR.WARN.INFO.DEBUG.ALL 当然再细分的话 还有 FATAL(严重错误), 但是Log4j官方建议实际实用的话,Log4 ...

  7. appium -ios 真机连接 环境搭建

    补充点一: 安装ios-deploynpm install -g ios-deploy 安装不了报错.! 后来找了找,发现sudo npm install -g ios-deploy --unsafe ...

  8. servlet 3.0无需配置web.xml,使用注入方式配置servlet实现登陆功能(服务器需要支持servlet3.0)

    首先申明上面的报错红叉,我也不知道怎么回事.总之能运行. 新建项目时选择java EE6.0,低版本没有servlet3.0. 先看一个基本示例. Test.java是用来测试无需配置文件,无需静态页 ...

  9. 存在继承关系的Java类对象之间的类型转换(一)

      类似于基本数据类型之间的强制类型转换. 存在继承关系的父类对象和子类对象之间也可以 在一定条件之下相互转换. 这种转换需要遵守以下原则: 1.子类对象可以被视为是其父类的一个对象2.父类对象不能被 ...

  10. 前端之promise

    Promise是一个非常重要的方法,它可以是一些异步操作最后归为有序的进行. url: from django.contrib import admin from django.urls import ...