Introduction

This is an article on WPF Binding Cheat Sheet. Some of the Binding won't work for Silverlight 3.

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
 

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, considerusing 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 set.
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.
TargetNullValue (3.5sp1) Value to use when the bound value is null.
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

WPF binding 参考的更多相关文章

  1. WPF入门教程系列(二) 深入剖析WPF Binding的使用方法

    WPF入门教程系列(二) 深入剖析WPF Binding的使用方法 同一个对象(特指System.Windows.DependencyObject的子类)的同一种属性(特指DependencyProp ...

  2. WPF Binding值转换器ValueConverter使用简介(二)-IMultiValueConverter

    注: 需要继承IMultiValueConverter接口,接口使用和IValueConverter逻辑相同. 一.MultiBinding+Converter 多值绑定及多值转换实例 当纵向流量大于 ...

  3. WPF Binding值转换器ValueConverter使用简介(一)

    WPF.Silverlight及Windows Phone程序开发中往往需要将绑定的数据进行特定转换,比如DateTime类型的时间转换为yyyyMMdd的日期,再如有一个值是根据另外多组值的不同而异 ...

  4. WPF Binding

    winform有binding, WPF也有binding,区别在哪呢?这里暂时不提.以前也检查接触WPF binding, 但为什么过段时间就忘记了呢? 可能主要原因自己的知识体系不够完善吧,下面我 ...

  5. WPF Binding Mode,UpdateSourceTrigger

    WPF 绑定模式(mode) 枚举值有5个1:OneWay(源变就更新目标属性)2:TwoWay(源变就更新目标并且目标变就更新源)3:OneTime(只根据源来设置目标,以后都不会变)4:OneWa ...

  6. WPF Binding ElementName方式无效的解决方法--x:Reference绑定

    原文:WPF Binding ElementName方式无效的解决方法--x:Reference绑定 需求: 背景:Grid的有一个TextBlock name:T1和一个ListBox,ListBo ...

  7. WPF Binding学习(四) 绑定各种数据源

    转自:http://blog.csdn.net/lisenyang/article/details/18312199 1.集合作为数据源 首先我们先创建一个模型类 public class Stude ...

  8. UpdateSourceTrigger Property in WPF Binding

    介绍 这篇文章我将介绍在WPF和Silverlight中更新绑定源的概念.正如您所知道的,当我们用TwoWay的模式绑定时,任何在目标控件上发生的变化都会影响绑定源的值. 请注意只是在用TwoWay绑 ...

  9. .NET: WPF Binding对数据的校验和转换以及多路Binding

    一.校验 一般需要对target上的值进行校验. xaml: <Window x:Class="WpfApplication1.MainWindow" xmlns=" ...

随机推荐

  1. .net 分布式架构之业务消息队列

    开源QQ群: .net 开源基础服务  238543768 开源地址: http://git.oschina.net/chejiangyi/Dyd.BusinessMQ ## 业务消息队列 ##业务消 ...

  2. 代码的坏味道(17)——夸夸其谈未来性(Speculative Generality)

    坏味道--夸夸其谈未来性(Speculative Generality) 特征 存在未被使用的类.函数.字段或参数. 问题原因 有时,代码仅仅为了支持未来的特性而产生,然而却一直未实现.结果,代码变得 ...

  3. HTML5实现文件断点续传

    HTML5的FILE api,有一个slice方法,可以将BLOB对象进行分割.前端通过FileList对象获取到相应的文件,按照指定的分割方式将大文件分段,然后一段一段地传给后端,后端再按顺序一段段 ...

  4. bzoj1079--记忆化搜索

    题目大意:有n个木块排成一行,从左到右依次编号为1~n.你有k种颜色的油漆,其中第i种颜色的油漆足够涂ci个木块.所有油漆刚好足够涂满所有木块,即c1+c2+...+ck=n.相邻两个木块涂相同色显得 ...

  5. dedecms 后台栏目添加图片

    前台调用栏目时需要显示图标,整理一下: 第一步:“系统->SQL命令工具” , 插入sql语句 alter table dede_arctype add typeimg varchar() 第二 ...

  6. 【开发软件】 在Mac下配置php开发环境:Apache+php+MySql

    本文地址 原文地址   本文提纲: 1. 启动Apache 2. 运行PHP 3. 配置Mysql 4. 使用PHPMyAdmin 5. 附录   有问题请先 看最后的附录   摘要: 系统OS X ...

  7. CSS学习笔记

    CSS学习笔记 2016年12月15日整理 CSS基础 Chapter1 在console输入escape("宋体") ENTER 就会出现unicode编码 显示"%u ...

  8. 如何区别char与varchar?

    1.varchar与char两个数据类型用于存储字符串长度小于255的字符,MySQL5.0之前是varchar支持最大255.比如向一个长度为40个字符的字段中输入一个为10个字符的数据.使用var ...

  9. Oracle 列数据聚合方法汇总

    网上流传众多列数据聚合方法,现将各方法整理汇总,以做备忘. wm_concat 该方法来自wmsys下的wm_concat函数,属于Oracle内部函数,返回值类型varchar2,最大字符数4000 ...

  10. [转载]MVVM模式原理分析及实践

    没有找到很好的MVVM模式介绍文章,简单找了一篇,分享一下.MVVM实现了UI\UE设计师(Expression Blend 4设计界面)和软件工程师的合理分工,在SilverLight.WPF.Wi ...