-
Book Overview & Buying
-
Table Of Contents
Windows Presentation Foundation 4.5 Cookbook
By :
Although element to element binding is occasionally useful, the classic data binding scenario involves an element bound to pure data. One of the benefits of this kind of binding is a decoupling of data from the way it's presented (if at all). All later changes are performed on the data only, letting the binding take care of updating whatever elements are bound to this data. In this recipe, we'll look at binding to a single data object.
Make sure Visual Studio is up and running.
We'll create some controls that bind to a single Person object, showing the basics of element to data binding.
Create a new WPF application named CH06.SingleObjectBinding.
Open MainWindow.xaml. Change the existing Grid to a StackPanel.
Add two TextBlock elements with their Text property set with binding expressions like so:
<StackPanel>
<TextBlock Text="{Binding Name}" />
<TextBlock Text="{Binding Age}" />
</StackPanel>Running the application...