Tagged Questions

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 ...
3
votes
2answers
328 views

RelativeSource binding from a ToolTip or ContextMenu

What am I doing wrong here?: <GridViewColumn> <GridViewColumn.CellTemplate> <DataTemplate> <Button> <Button.ToolTip> ...
2
votes
1answer
253 views

Bind to DataContext of TreeView from HierachicalDataTemplate

I have a TreeView which contains items populated by a HierarchicalDataTemplate. I am trying to get to a property in the TreeView's DataContext from inside the HierarchicalDataTemplate. Can someone ...
1
vote
1answer
143 views

XAML: Binding fiasco with a DataTemplate within a ListView within a DataTemplate

Hi I got a dataTemplate for a ViewModel. Within this DataTemplate I got a ListView bound to a collection of the template and there In I wan't to be able to set a property of the items in the ...
0
votes
1answer
259 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
331 views

Windows Phone 7 XAML — getting a binding to work with the container of my object

What I want to do is bind the text of a TextBlock to my custom ButtonSymbol property of the UserControl. Here is the XAML for the UserControl. The Binding part for the TextBlock needs to be filled ...
0
votes
1answer
595 views

WPF ComboBox DropDown using PlacementTarget

I have a ContentControl comprised from left to right of a Button, partition and a ComboBox. I want the ComboBox dropdown to line up with the left side of the control as opposed to the left side of the ...