This whimsical binding. TwoWay Binding to DataContext. Binding in WPF (rredcat.blogspot.com)
submitted by
RredCat(299) 2 years, 11 months ago
I often use Binding to DataContext. It is one of the main advantage of WPF. In most case I set custom class inherit of DependencyObject (for support DependencyProperty) and I have some like next code:
<StackPanel>
<TextBlock Text="{Binding Path=Id}" />
<TextBlock Text="{Binding Path=Name}" />
<TextBlock Text="{Binding Path=Surname}"/>
...
</StackPanel>
But sometime I set a simple type for example string. For this case I can implement next Binding:
<TextBlock Text="{Binding}" /> read more...
|category: Windows Presentation Foundation
|Views: 47
tags:
xaml DataContext WPF Binding another
Everyones tags:
Your Tags: