vote up 5 vote down star
6

Short examples for copy & paste.

flag

69% accept rate
hmm, revisiting the question, I feel that it looks odd. Originally I just posted here my own examples for later reference, but Abe and Bob added a case I forgot, so I figured I'd better delete my own answer again. – David Schmitt Feb 15 at 12:27

3 Answers

vote up 11 vote down check

If you want to bind to another property on the object:

{Binding Path=PathToProperty, RelativeSource={RelativeSource Self}}

If you want to get a property on an ancestor:

{Binding Path=PathToProperty, RelativeSource={RelativeSource AncestorType={x:Type typeOfAncestor}}}

If you want to get a property on the templated parent (so you can do 2 way bindings in a ControlTemplate)

{Binding Path=PathToProperty, RelativeSource={RelativeSource TemplatedParent}}
link|flag
When you say "bind to another property on the object", which object are you talking about? The display element or the object within the data context? – Drew Noakes Dec 9 '08 at 17:42
It turns out, as I revisit this, that the object in question is the object upon which the binding is being applied. I tried using <Button Tag="{Binding RelativeSource={RelativeSource Self}}" /> and looking in the debugger. The Tag property contained the button itself. – Drew Noakes Mar 3 at 9:31
vote up 2 vote down
Binding RelativeSource={
    RelativeSource Mode=FindAncestor, AncestorType={x:Type ItemType}
}
...

The default attribute of RelativeSource is the Mode property. A complete set of valid values is given here (from MSDN):

  • PreviousData Allows you to bind the previous data item (not that control that contains the data item) in the list of data items being displayed.

  • TemplatedParent Refers to the element to which the template (in which the data-bound element exists) is applied. This is similar to setting a TemplateBindingExtension and is only applicable if the Binding is within a template.

  • Self Refers to the element on which you are setting the binding and allows you to bind one property of that element to another property on the same element.

  • FindAncestor Refers to the ancestor in the parent chain of the data-bound element. You can use this to bind to an ancestor of a specific type or its subclasses. This is the mode you use if you want to specify AncestorType and/or AncestorLevel.

link|flag
vote up 1 vote down

Don't forget TemplatedParent:

<Binding RelativeSource="{RelativeSource TemplatedParent}"/>

or

{Binding RelativeSource={RelativeSource TemplatedParent}}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.