Tagged Questions

MultiBinding is a XAML tag in Microsoft .NET WPF that enables you to combine multiple sources of data into a single collection of data available for data binding.

learn more… | top users | synonyms

7
votes
1answer
2k views

StringFormat and Multibinding with Label

I would like to use StringFormat to do someting like this : <Label x:Name="myLabel"> <Label.Content> <Multibinding StringFormat="{}{0} - {1}"> <Binding ...
6
votes
3answers
502 views

treeview Multibinding in wpf

I want to bind a treeview to a class like this one: public class Folder : Base_FileFolder { public Folder() { Folders = new ObservableCollection<Folder>(); Files = new ...
5
votes
1answer
323 views

Why is multibinding supported in WPF, but not silverlight?

Multibinding is a pretty powerful feature in WPF, why is it not supported in silverlight? They never got around to adding support to it? It's too big to fit in the .NET framework? Will it be coming ...
5
votes
1answer
2k views

Text on TextBox with UpdateSourceTrigger=PropertyChanged is not updated when coercion of text input results in unchanged source value

I have a text box whose Text property has a TwoWay MultiBinding with UpdateSourceTrigger set to PropertyChanged. The first Binding is to a dependency property (Value) which has a ...
5
votes
1answer
1k views

WPF: Is there a way to get original values in ConvertBack method of MultiValueConverter?

I've written a MultiValueConverter which checks if a given list contains a given value and returns true if it does. I use it for binding to custom checkbox list. Now I'd like to write ConvertBack ...
5
votes
3answers
6k views

WPF MultiBinding Fails. Why?

I have this Markup: <GroupBox BorderThickness="2"> <GroupBox.BorderBrush> <SolidColorBrush x:Name="Border"> <SolidColorBrush.Color> ...
4
votes
1answer
134 views

Why does a format string that works in a Binding not work in a MultiBinding?

I was intrigued by this question: MultiBinding StringFormat of TimeSpan If I have the following Binding defined where StartTime is of type TimeSpan: <TextBlock Text={Binding Path=StartTime, ...
4
votes
3answers
149 views

Why ever use a multi binding converter?

Couldn't I just use a single binding converter and as a parameter pass in the DataContext and from there pick what properties I want to use?
4
votes
1answer
5k views

WPF MultiBinding

I have two text boxes, one for a billing address field and one for a shipping address field. When the user types something into the the billing address text box the shipping address text box gets the ...
4
votes
3answers
2k views

Let WPF Tabcontrol height assume height of largest item?

Is there any way to have to tabcontrol take the size of the largest tab item (well, actually, the tabitem's content)? Since the tabcontrol has no specific size assigned it should autosize: it does ...
3
votes
1answer
214 views

Multibinding in Silverlight using VB.Net

I am trying to implement multibinding in Silverlight using VB.Net. I have found a very good reference for an implementation in C# here. I spent some time trying to use various converters to migrate it ...
3
votes
1answer
490 views

WPF MultiBinding - UnsetValue Issue

I have a TextBlock. When its Text is bound as: <Binding Path="Applicant2.Surname"/> It works fine, however I want to include the Forenames so changed the binding to: <MultiBinding ...
3
votes
2answers
803 views

putting multibinding on a single line in xaml

Is there a way to take this multibinding: <TextBox.IsEnabled> <MultiBinding Converter="{StaticResource LogicConverter}"> <Binding ElementName="prog0_used" Path="IsEnabled" ...
3
votes
1answer
778 views

How does FallbackValue work with a MultiBinding?

I ask because it doesn't seem to work. Assume we're binding to the following object: public class HurrDurr { public string Hurr {get{return null;}} public string Durr {get{return null;}} } ...
2
votes
1answer
328 views

Generalize guice's robot-legs example with Multibinding

I have this use case that is very similar to the robot-legs example of Guice, except I don't know how many "legs" I have. Therefore I can't use the annotations needed for the robot-legs example. I ...
2
votes
2answers
334 views

Why is ConvertBack not called on this MultiBinding?

My combobox listing Contacts is bound to both FullName and PhoneExtension using MultiBinding. The Convert method of IMultiValueConverter is called but ConvertBack is not. Why? The combobox properly ...
2
votes
1answer
260 views

Why does MultiBinding with a Converter not work within a ToolTip?

For part of a fairly-complex WPF ToolTip, I'm attempting to use a MultiBinding to produce formatted text based on two properties. The problem is, the binding's MultiConverter receives ...
2
votes
1answer
528 views

Issue while mixing MultiBinding converter and Trigger in style

Setting the style in <UserControl.Resources> (assuming the converter returns the color Red) <Style x:Key="FieldToValidate" TargetType="{x:Type TextBox}"> <Setter ...
2
votes
1answer
322 views

How to update multibinding manually

I had a problem with the Binding. The Rectangle.Fill dependency property was bound to an ObservableCollection with the converter. Although the ObservableCollection implements INotifyCollectionChanged, ...
2
votes
2answers
217 views

MultiBinding not working but corresponding Binding does work

I have the following code: <local:StaffAtMeetingEditor DataContext="{Binding Meeting}" Grid.Row="1"> <local:StaffAtMeetingEditor.InEditMode> <MultiBinding ...
2
votes
3answers
309 views

WPF - Elegant way of disabling and enabling different controls based on different states of the Model using MVVM

I am looking for an elegant solution for the following problem. Let's assume we have a (View)Model with the following boolean properties: Alpha Beta Gamma Delta Next I have 5 controls on the ...
2
votes
2answers
102 views

2 Properties in One Binding?

Can I combine 2 elements in one biding? <Canvas> <Ellipse Fill="Black" x:Name="dot1" Width="16" Height="16" Canvas.Left="124" Canvas.Top="133"/> <Ellipse Fill="Black" ...
2
votes
1answer
422 views

Multibinding Multiselection ListView

OK I have a weird one here. What I am trying to figure out is how to have one listview, populated by an ObservableCollection, update another ListView, populated by another ObservableCollection, based ...
2
votes
2answers
206 views

WPF corelating Multibindings and Converter's values[]

My XAML is as follows <Button.IsEnabled > <MultiBinding Converter="{StaticResource IsEnabledConverter}" > <Binding Path="aaa"/> <Binding Path="bbb"/> ...
2
votes
1answer
128 views

Why does my IMultiBindingConverter get an array of strings when used to set TextBox.Text?

I'm trying to use a MultiBinding with a converter where the child elements also have a converter. The XAML looks like so: <TextBlock> <TextBlock.Text> <MultiBinding ...
2
votes
2answers
516 views

Why does MultiBinding a TranslateTransform.X seem not to work in WPF?

I hope I am not being silly asking this, but I am trying to design a graph viewer in WPF being a total newb in the framework; although I did come up with a couple of solutions to my problems, the one ...
2
votes
1answer
2k views

What's the shorter xaml syntax for Multibinding using StringFormat with multiple bindings?

for a single binding, we use: <TextBlock> <TextBlock.Text> <MultiBinding StringFormat="{}{0}"> <Binding Path=EmployeeName/> </MultiBinding> ...
2
votes
3answers
812 views

MultiBinding binded to elements question

I have a login form that contains a username textbox and a password box. I want the ok button to be enabled only when both the fields contain a value. I have a converter that check for all the ...
1
vote
1answer
102 views

how to edit a WPF textbox which uses multibinding and string.format?

I have the following code. This displays data in following format H:M:S. I would like to edit these values...and wanted to be notified in viewmodel. How do I achieve that ? Any help would be ...
1
vote
2answers
126 views

WPF a Multibinding on ColumnDefinitions

I have a Grid that holds segments such as: -- --- ----------- --- ------------------- Each segment's visual length is dependant upon the total length, ...
1
vote
1answer
209 views

How do I bind combobox text to legacy data not in the drop down list?

The drop-down list (itemssource) of my combobox contains new product request items. I want to bind to legacy data that is not in the drop-down list. To complicate things I'm using multibinding with an ...
1
vote
1answer
463 views

MultiBinding StringFormat of TimeSpan

I cannot for the life of me get this to work. I need to display hh:mm from a pair of timespan objects in a textblock and it is just not working. This is what I have so far: <TextBlock> ...
1
vote
4answers
110 views

Binding Two Property To ==> single Control

Suppose I have property FIrstName and LastName I need to bound it with single textbox. So in just single textbox I can display both FirstName and LastName. Then how could it be possible?
1
vote
1answer
321 views

multibinding datagrid selecteditems don't work

I use the following to get the selecteditems from a datagrid and it works fine. <Button Command="{Binding DeleteDataCommand}" CommandParameter="{Binding ElementName=MyGridCtrl, ...
1
vote
2answers
1k views

ConverterParameter with Binding on Multibinding

is it possible to add a Binding to a ConverterParameter in a MultiBinding? Something like this: <HierarchicalDataTemplate DataType="{x:Type Elements:RootElement}"> ...
1
vote
1answer
521 views

How to hide the Separator in a context menu using MultiBinding?

I am using a context menu on a wpf treeview and I am pretty much there as to what I want. Before I explain the problem let me explain what the XAML definition for the context menu is doing. For each ...
1
vote
1answer
563 views

IMultiValueConverter values are okay, but CommandParameter is null

I am trying to pass several values through an IMultiValueConverter to a command (as the command parameter). The values are correct when they go through the converter, but once the Can_Execute() and ...
1
vote
3answers
851 views

WPF - Delayed Multibinding

I have a multibinding that looks something like this: <UserControl.Visibility> <MultiBinding Converter="{StaticResource isMouseOverToVisibiltyConverter}"> <Binding ...
1
vote
1answer
418 views

WPF, multibinding a CSV to a listbox of checkboxes, and MVVM best practices

I'm relatively new to the whole WPF and MVVM idea and I'm looking for advice on a best practice. I have a solution that works but it feels like I might be missing some great XAML syntax that would ...
1
vote
2answers
196 views

Binding WPF control to multiple sources (not traditional multibinding)

I am trying to do some databinding magic. I have a Shipments view that lists shipments, and provides filtering and ordering ability on the list. The filter string box, Delivery Status filters ...
1
vote
1answer
601 views

Binding a Property of an object in Item (row) to a DataGridCell Property in WPF DataGrid

Using Release WPF DataGrid I am trying to bind to the property of a CellViewModel (that supports INotifyPropertyChanged of course). I am binding the DataGrid's ItemsSource to an ObservableCollection ...
1
vote
1answer
423 views

Why does Multibinding have NotifyOnTargetUpdated but no TargetUpdated property

I've run into a problem where the TargetUpdated event seemed like it would be perfect. Unfortunately it looks like Multibinding does not have a TargetUpdated property. Is there some way to still set ...
1
vote
1answer
221 views

Databinding to the value of a multiBinding

Maybe I am not quite grasping multibindings. I have a property on my viewmodel called OfficeDisplayName that is written to the database. This is a concatenated field based on a person's FirstName, ...
1
vote
1answer
210 views

Targeting Custom Property with Multi Bindings in Silverlight

I'm trying to use WPF MultiBinding to target a custom property I defined on my UserControl. I'm not having any luck. All of the examples that I've seen target built-in .Net properties (Text, ...
1
vote
1answer
190 views

Problem with validation and multibinding

In my WPF application I use the following xaml: ... <TextBox services:TextBoxService.IsFocused="{Binding Path=IsSelected, Mode=OneWay}" FocusVisualStyle="{x:Null}"> <MultiBinding ...
1
vote
2answers
367 views

'System.Windows.Data.MultiBinding' is not a valid value for property 'Text'

I'm trying to write a custom MarkupExtension that allows me to use my own mechanisms for defining a binding, however when I attempt to return a MultiBinding from my MarkupExtension I get the above ...
1
vote
0answers
67 views

connecting to multiple resources

I would like to know if there is a way to connect to multiple resources: Specifically I have the following problem abstact class BaseClass { ObservableCollection<BaseClass>; } class ...
1
vote
1answer
183 views

Converters on child bindings in a MultiBinding

Suppose I have this MultiBinding: <MultiBinding Converter="{StaticResource FooBarConverter}> <Binding Path="Foo" Converter="{StaticResource FooConverter}" /> <Binding Path="Bar" ...
1
vote
1answer
825 views

Multibinding File-Paths into a Button ControlTemplate

I am trying to develop an application that uses a number of images that are stored in a seperate remote file location. The file-paths to the UI elements are stored within the Application Settings. ...
1
vote
1answer
55 views

How to dispatch a new property value in an object to the same property of two other objects

In WPF, I've three objects exposing the same DependencyProperty (let's say it's an integer). I want all three property values to remain synchronized, i.e. that whenever the int value changes in an ...

1 2