Tagged Questions
The findancestor tag has no wiki summary.
5
votes
3answers
12k 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 the Window using data ...
0
votes
1answer
264 views
Programmatically creating a RelativeSource FindAncestor binding
I am writing some code which programmatically creates bindings on the fly, but I can't seem to read the value resulting from a binding whose RelativeSourceMode is set to FindAncestor. I was wondering ...
0
votes
1answer
180 views
Binding to a cutom property of the template parent
Q: How do I bind to a custom property of the template parent from a child control's style DataTrigger
I've been scratching my head over this one for a couple of days.
I have a databound TreeView ...
0
votes
2answers
200 views
ToolBar item DataTemplate binding RelativeSource search failing to find parent ToolBar
I have a ToolBar containing Buttons, some of the Buttons have only an Image for content, others have only Text. I am trying to bind the width property of the Button Image to a custom Property on my ...
0
votes
1answer
623 views
WPF Binding from within a ItemsControl - FindAncestor not working
Good afternoon,
I have what appear to be a very common issue. I have a user control which has a View Model as its data context. Elements within this user control then use this ViewModel for Binding ...
0
votes
1answer
405 views
FindAncestor does not work for UserControl in ListView.ItemTemplate
I'm having some issues when trying to bind a property of a UserControl in a ItemTemplate with a FindAncestor mode.
I have the following code:
<Window x:Class="TestUserControlBinding.MainWindow"
...
0
votes
1answer
65 views
Expander.IsExpaned only if current template is a descendant of a ToolTip
I am using a DataTemplate (a StaticResource) in several places in my application as in an ItemsControl, ContentControl and in a ToolTip.
The template contains an Expander, and I want its IsExpanded ...