0
votes
1answer
244 views
What exactly does WPF Data Binding’s “RelativeSource FindAncestor” do?
I am currently working within a WPF user control (the root element of my XAML file is "UserControl"), which I know is being hosted inside a Window. How can I access a property of t …
4
votes
3answers
553 views
Differences between ElementName=”<Me>” and RelativeSource self?
What are the differences between making a binding self-referential via name versus self-referential via RelativeSource?
For example:
<!-- Self referential via name -->
< …
0
votes
1answer
371 views
How do you debug wpf relativesource throwing errors on load?
I'm working with a WPF dialog window that contains a ListBox. The list box can display both an 'icon' and 'list' view. To accomplish this, we used ListBoxItem styles that are dyna …
0
votes
0answers
227 views
WPF UserControl Command Parameter Binding to an object on the Parent
Hi,
I have a UserControl Tasks.xaml that is used within a couple of property pages that inherit from a PropertyPageBase class - which itself inherits from UserControl. Within the …
0
votes
1answer
582 views
[WPF] RelativeSource FindAncestor issue
Here is the code:
<GridViewColumn
DisplayMemberBinding="{Binding Path=BookId}"
Width="100">
…
0
votes
1answer
89 views
WPF RelativeSource binding question
HI!
I have an Expander and a TextBox.
I want to disable the TextBox when the Expander is expanded and enable when it's not expanded.
How to do that? I've tried something like this: …
1
vote
3answers
656 views
wpf TemplateBinding vs RelativeSource TemplatedParent
What is the difference between
<ControlTemplate TargetType="{x:Type Button}" x:Key="buttonTemplate">
<Border BorderBrush="{TemplateBinding Property=Background}" Borde …
1
vote
1answer
198 views
Get DataContext of ListView Ancestor
I am developing a WPF app using MVVM and need some help.
for the View of my AddressesViewModel I have a usercontrol with a listview. I would like to execute a command found in the …
5
votes
3answers
8k views
How do I use WPF bindings with RelativeSource?
Short examples for copy & paste.
