| title | ms.custom | ms.date | ms.prod | ms.reviewer | ms.suite | ms.technology | ms.tgt_pltfrm | ms.topic | helpviewer_keywords | ms.assetid | caps.latest.revision | author | ms.author | manager | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
How to: Specify the Binding Source |
03/30/2017 |
.net-framework |
|
article |
|
55d47757-2648-4a52-987f-b767953f168c |
16 |
dotnet-bot |
dotnetcontent |
wpickett |
How to: Specify the Binding Source
In data binding, the binding source object refers to the object you obtain your data from. This topic describes the different ways of specifying the binding source.
Example
If you are binding several properties to a common source, you want to use the DataContext property, which provides a convenient way to establish a scope within which all data-bound properties inherit a common source.
In the following example, the data context is established on the root element of the application. This allows all child elements to inherit that data context. Data for the binding comes from a custom data class, NetIncome, referenced directly through a mapping and given the resource key of incomeDataSource.
[!code-xamlDirectionalBinding#DataContext1]
[!code-xamlDirectionalBinding#DataContext2]
The following example shows the definition of the NetIncome class.
[!code-csharpDirectionalBinding#DataObject] [!code-vbDirectionalBinding#DataObject]
[!NOTE] The above example instantiates the object in markup and uses it as a resource. If you want to bind to an object that has already been instantiated in code, you need to set the
DataContextproperty programmatically. For an example, see Make Data Available for Binding in XAML.
Alternatively, if you want to specify the source on your individual bindings explicitly, you have the following options. These take precedence over the inherited data context.
| Property | Description |
|---|---|
| xref:System.Windows.Data.Binding.Source%2A | You use this property to set the source to an instance of an object. If you do not need the functionality of establishing a scope in which several properties inherit the same data context, you can use the xref:System.Windows.Data.Binding.Source%2A property instead of the DataContext property. For more information, see xref:System.Windows.Data.Binding.Source%2A. |
| xref:System.Windows.Data.Binding.RelativeSource%2A | This is useful when you want to specify the source relative to where your binding target is. Some common scenarios where you may use this property is when you want to bind one property of your element to another property of the same element or if you are defining a binding in a style or a template. For more information, see xref:System.Windows.Data.Binding.RelativeSource%2A. |
| xref:System.Windows.Data.Binding.ElementName%2A | You specify a string that represents the element you want to bind to. This is useful when you want to bind to the property of another element on your application. For example, if you want to use a xref:System.Windows.Controls.Slider to control the height of another control in your application, or if you want to bind the xref:System.Windows.Controls.ContentControl.Content%2A of your control to the xref:System.Windows.Controls.Primitives.Selector.SelectedValue%2A property of your xref:System.Windows.Controls.ListBox control. For more information, see xref:System.Windows.Data.Binding.ElementName%2A. |
See Also
xref:System.Windows.FrameworkElement.DataContext%2A?displayProperty=nameWithType
xref:System.Windows.FrameworkContentElement.DataContext%2A?displayProperty=nameWithType
Property Value Inheritance
Data Binding Overview
Binding Declarations Overview
How-to Topics