Binding to a single object
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.
Getting ready
Make sure Visual Studio is up and running.
How to do it...
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 existingGrid
to aStackPanel
.Add two
TextBlock
elements with theirText
property set with binding expressions like so:<StackPanel> <TextBlock Text="{Binding Name}" /> <TextBlock Text="{Binding Age}" /> </StackPanel>
Running the application...