Top "Multibinding" questions

MultiBinding is a collection of Binding objects attached to a single binding target property.

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 …

wpf height tabcontrol multibinding
WPF MultiBinding Fails. Why?

I have this Markup: <GroupBox BorderThickness="2"> <GroupBox.BorderBrush> <SolidColorBrush x:Name="Border"> <SolidColorBrush.…

c# .net wpf data-binding multibinding
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 …

textbox binding multibinding propertychanged updatesourcetrigger
How to set the sources in this multibinding example?

I have 2 classes like this: public MyClass1: INotifyValueChanged { public Dictionary<int, Color> Property1 { public event PropertyChangedEventHandler PropertyChanged; get { …

c# wpf multibinding
Multibinding generates "Cannot set MultiBinding because MultiValueConverter must be specified"

I have a button with binding which works fine, see below: <Button x:Name="licenceFilterSet" Content="Search" Command="{Binding …

c# visual-studio-2010 mvvm multibinding
Handling a bool fallback value for a binding within a MultiBinding

I have a MultiBinding converter that determines the visibility of a control depending on if both of my Binding fields …

wpf xaml binding multibinding fallbackvalue
WPF MultiBindings

I need to implement MultiBindings in C# directly without using XAML, I know how to use the IMultiValueConverter in C#, …

c# wpf multibinding
Nested MultiBinding(s)

I've been playing around with WPF for quite a while now, but for the first time today, I needed to …

c# wpf multibinding
Use a WPF Style to simplify repetitive MultiBindings

I am displaying the results of several tests. There are 2 variables on each test, and the text and color of …

wpf xaml multibinding
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=…

wpf xaml binding multibinding string-formatting