Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.18 KB

relativesourcemode.md

File metadata and controls

39 lines (25 loc) · 1.18 KB
-api-id -api-type
T:Windows.UI.Xaml.Data.RelativeSourceMode
winrt enum

RelativeSourceMode

-description

Defines constants that describe the location of the binding source relative to the position of the binding target.

-xaml-syntax

<objectproperty="enumMemberName" />

-enum-fields

-field None:0

Don't use this value of RelativeSourceMode; always use either Self or TemplatedParent.

-field TemplatedParent:1

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

-field Self:2

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.

-remarks

-examples

-see-also

Binding, XAML data binding sample, Data binding in depth