Tagged Questions

11
votes
4answers
10k views

Silverlight 4 RelativeSource FindAncestor binding

Will there be RelativeSource FindAncestor, AncestorType... in Silverlight 4?
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
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
1answer
2k views

Binding to a RelativeSource Self in Silverlight

I am trying to bind a value of a slider control to a property that is in the same control: <Slider Value="{Binding Path=ValueProperty, RelativeSource={RelativeSource Self}}" ...
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
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 ...
1
vote
1answer
381 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> ...
1
vote
1answer
903 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 AddressesViewModel ...
0
votes
0answers
39 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
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
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
2answers
82 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
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
631 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
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
1answer
109 views

How to get relative source of item in ItemTemplate

I have a ListBox with specified ItemTemplate. And the ItemTemplate contain itself ListView and I want to display in that ListView a collection, which is actually a property of the item of the ListBox. ...
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 ...