Tagged Questions

94
votes
7answers
71k views

How do I use WPF bindings with RelativeSource?

How do I use RelativeSource with WPF bindings and what are the different use-cases?
39
votes
5answers
18k views

WPF TemplateBinding vs RelativeSource TemplatedParent

What is the difference between these 2 bindings: <ControlTemplate TargetType="{x:Type Button}"> <Border BorderBrush="{TemplateBinding Property=Background}"> <ContentPresenter ...
10
votes
3answers
4k 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 --> <Window ... ...
5
votes
2answers
3k views

WPF Bind to parent property from within nested element using style

I've been trying to build a text box with a hint that's displaying while it's empty. I'm having trouble setting the hint text from within a style. To be precise, this works (that is, it binds ...
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 ...
4
votes
2answers
329 views

ElementName vs. RelativeResource?

What of the following TextBlocks' Bindings costs more performance: <Window x:Name="Me" x:Class="MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
4
votes
3answers
1k views

Binding to DataContext outside current ItemsSource context

I have a DataSet bound to the Window.DataContext; I also have a DataGrid <DataGrid ItemsSource={Binding Tables[Items]}> <DataGrid.Columns> <DataGridTextBoxColumn ...
4
votes
1answer
10k views

RelativeSource FindAncestor issue

Here is the code: <GridViewColumn DisplayMemberBinding="{Binding Path=BookId}" Width="100"> <GridViewColumn.Header> <Border BorderBrush="Black"> ...
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> ...
3
votes
3answers
6k views

wpf: Access parent DataContext from DataTemplate

I have a ListBox which binds to a child collection on a ViewModel. The listbox items are styled in a datatemplate based on a property on the parent ViewModel: <Style ...
2
votes
1answer
252 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 ...
2
votes
2answers
2k views

Silverlight RelativeSource of TemplatedParent Binding within a DataTemplate, Is it possible?

I'm trying to make a bar graph Usercontrol. I'm creating each bar using a DataTemplate. The problem is in order to compute the height of each bar, I first need to know the height of its container ...
1
vote
2answers
19 views

How to bind from a listItem template to a property in the list itself?

I have a class (class A) that contains a list (list A) and and integer (int A). I also have a listview that its itemssource is bound to "list A". The listitems have a template that shows the itmes ...
1
vote
1answer
380 views

WPF pass parent binding object to the converter

I have ItemsControl that is bound to collection of type Student. Inside the ItemTemplate I have a TextBox that uses IValueConverter to do some custom calculations and logic. I want to pass the actual ...
1
vote
1answer
172 views

WPF binding screentip with relative source

I was expecting the title of the screen tip to show "X" as well, but it is empty: <Fluent:Button x:Name="rbNewProject" Header="X"> <Fluent:Button.ToolTip> ...
1
vote
2answers
871 views

WPF: Binding to ObservableCollection in ControlTemplate is not updated

I created a ControlTemplate for my custom control MyControl. MyControl derives from System.Windows.Controls.Control and defines the following property public ObservableCollection<MyControl> ...
0
votes
0answers
38 views

Using Wpf RelativeSource Binding breaks Blendability

I've got the following scenario... I have a Window that contains an ItemsControl. I specify a ViewModel for the Window's DataContext. I specify a DataTemplate for the ItemControl's ItemTemplate. In ...
0
votes
1answer
24 views

UI object, on samelevel of XAML Tree, as CommandParameter

I have XAML tree (just a sample) as follows: <Window> <Grid> <DockPanel> <DataGrid> <DataGrid.Resources> ...
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
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
2answers
171 views

How to use ItemsControl with WrapPanel to list items separated by a comma?

I have an ItemsControl which lists items by separating them with a comma. The code is the following: <ItemsControl ItemsSource="{Binding MyItems}"> <ItemsControl.ItemsPanel> ...
0
votes
1answer
394 views

C# WPF two different DataContext in One Control while using MVVM and the secound property is every time the same

First the code: <ListView ItemsSource="{Binding DataTransferModel.Output}" Background="Transparent" Margin="0" VerticalContentAlignment="Top" AlternationCount="2" Name="lvOutput" ...
0
votes
2answers
81 views

WPF Styling and Templating over many buttons?

I can't seem to get the correct combination to get the desired effect: Current XAML: <Button Content="Foo" prism:Click.Command="{Binding FooCommand}" Visibility="{Binding IsEnabled, ...
0
votes
2answers
87 views

WPF: How do I know if Binding RelativeSource found an ancestor

I'm using the binding RelativeSource with the FindAncestor Mode but the binding is not working. How do I debug and see if It is able to find the ancestor?
0
votes
1answer
243 views

WPF Binding RelativeSource to Ancestor Issue

I'm binding a collection of collections to a WPF datagrid component(external library) and the underlying DataSource has the following structure. This basically gives me a datagrid with hierarchical ...
0
votes
1answer
1k views

How to properly bind datacontext RelativeSource in WPF?

I am defining the RelativeSource in my Template in the XAML, with DataContext="{Binding RelativeSource={RelativeSource Self}}" I am getting an exception "A first chance exception of type ...
0
votes
2answers
155 views

Connecting width/height of cell in two different controls?

I need to create two controls that contain the same amound of items (a dynamic amount), the first control represents the keys, the second represents the values. I need it so that when the user ...
0
votes
1answer
630 views

WPF: Relative Source to DataTemplate

If I have a data template as follows, <DataTemplate DataType="{x:Type vm:EditorTabViewModel}"> <me:MarkdownEditor TextContent="{Binding Path=Content, ...
0
votes
1answer
719 views

Binding with Relativesource --wpf

I have a short question: I have a datagrid and binded it to something. Then I put a combobox in a column and binded it to another source by ItemsSource="{Binding DataContext.Users, ...
0
votes
1answer
289 views

WPF - RelativeSource Binding Problem

I am trying to create a back button. So i am binding the navigationwindows backstack. Code: <Hyperlink Name="back" NavigateUri="{Binding RelativeSource={RelativeSource AncestorType={x:Type ...
0
votes
2answers
510 views

WPF Bind to DependencyProperty of another Object?

I am working on a WPF application similar to visio. I would like to be able to logically group some of the items in my diagram, each of which is a UIElement, and control certain behaviors (i.e. ...
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 ...
0
votes
1answer
669 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: <TextBox ...
0
votes
2answers
3k 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 dynamically applied to ...