Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 2.78 KB

binding_source.md

File metadata and controls

62 lines (42 loc) · 2.78 KB
-api-id -api-type
P:Windows.UI.Xaml.Data.Binding.Source
winrt property

Windows.UI.Xaml.Data.Binding.Source

-description

Gets or sets the data source for the binding.

-xaml-syntax

<Binding Source="sourceReference"/>

-xaml-values

sourceReference
sourceReferenceA reference to an existing object that serves as the data source. Typically the object is created in a ResourceDictionary and given a key, then referenced by using the {StaticResource} markup extension. For example: <Binding Source="{StaticResource customDataSourceObject}" .../>
## -property-value The source object that contains the data for the binding.

-remarks

The Source property is optional on a Binding object. If the Source property is set on a Binding object, the data source applies only to the target properties that use that Binding object.

To create a data source that is inherited by all the child elements in the tree, instead set the DataContext property on the parent element. Then the parent element and all its children look to the DataContext as the source of their bindings. If the Source is set for a child element, it will override the DataContext inheritance in that instance.

The target can bind directly to the Source object if the path is empty or to a property of the Source object as defined by the path. The path is set either in XAML with the binding syntax or when the Binding object is created.

You can't set the property values of a Binding object after that binding has been attached to a target element and target property. If you attempt this you'll get a run-time exception.

-examples

The following code example demonstrates how to set this property in XAML. For the complete code listing, see the XAML data binding sample.

<StackPanel>

  <StackPanel.Resources>
    <CollectionViewSource x:Name="teamsCVS"/>
  </StackPanel.Resources>

  <ListBox x:Name="lbTeams" Height="200" 
    ItemsSource="{Binding Source={StaticResource teamsCVS}}">
    <ListBox.ItemTemplate>
      <DataTemplate><!-- ... --></DataTemplate>
    </ListBox.ItemTemplate>
  </ListBox>

</StackPanel>

For an example demonstrates how to set this property in code, see the Binding class.

-see-also

XAML data binding sample, Data binding in depth