4
votes
Exposing Multiple Databinding sources
I would probably use a CustomControl with two DependencyProperties. Then the external site that uses your custom control could bind the data that they want to that control, also by using a custom c …
10
votes
Best practice when not implementing IValueConvert.ConvertBack
The MSDN documentation for IValueConverter.ConvertBack recomends returning …
6
votes
databind the Source property of the WebBrowser in WPF
The problem is that WebBrowser.Source is not a DependencyProperty. One workaround …
2
votes
Binding one collection to multiple tabs with filters
You can use a CollectionViewSource to reuse the original collection with a filter. …
