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.
0
votes
2answers
29 views
Multibinding: two colums to one column
I have a table which has two columns ValueA and ValueB. I need to show the table in a grid, but I need to show either ValueA or ValueB, but not both. So if ValueA doesn't have a value, then ValueB is ...
0
votes
1answer
60 views
How to switch between 2 data sources for ListBox.ItemsSource
What is the best/elegant way to bind ItemsControl.ItemsSource to 2 different sources best on a given property?
The binding should be done only to one of the 2 collection, the selection to which ...
0
votes
1answer
26 views
why can't I use multibinding with the IsEnabled property of the button?
I am trying to set the IsEnabled property of a button using multibinding, because this property depends on three variables.
If I would set the content propery, I could use this code:
<Button ...
0
votes
1answer
22 views
How can I convert a control that is already bound to multibinding
Let's say I have a FrameworkElement that is already bound to a converter in the XAML. Programmatically, I wish to append a binding to the existing binding at runtime - for instance in the control's ...
0
votes
1answer
52 views
MultiBinding Converter in CheckBox.IsChecked not called
I have a custom combobox a multiselectioncombobox if you will,
the thing is the selections depend on an other collection. I tried to bind ComboBox.IsChecked property to MultiBinding Converter but the ...
0
votes
0answers
23 views
How do I convert an explicit value to a binding programmatically?
Let's say I have the following XAML:
<SomeRandomUIElement IsVisible=false />
Now, at runtime, I want to bind this control up with security, taking into account the value that the developer ...
1
vote
1answer
26 views
Newline or carriage returns in Multibind StringFormat
So i've got the following:
<TextBlock.Text>
<MultiBinding StringFormat="So and so will donate {0:C0}
to {1}, bringing the
total amount to {2:C0}.">
...
0
votes
1answer
51 views
How to use multibiding with a Style Setter
The alternate row style is defined as:
<Style TargetType="telerik:GridViewRow">
<Setter Property="Background" Value="{Binding Color,Converter={StaticResource ...
0
votes
0answers
67 views
WPF Multibinding to another path?
This is my DataGrid binded on a ViewSource:
<DataGridTemplateColumn x:Name="sumColumn" Header="Summary" Width="SizeToHeader">
<DataGridTemplateColumn.CellTemplate>
...
0
votes
1answer
132 views
WPF TextBlock MultiBinding
I want to bind TextBlock's Text property to some elements' and some model's properties. Something like this:
<TextBlock>
<TextBlock.Text>
<MultiBinding>
...
1
vote
1answer
55 views
Multibinding and mutation in WPF
I have a button with some multibinding to which is attached a command :
<Button Content="remove" HorizontalAlignment="Right" VerticalAlignment="Top" Cursor="Hand" Focusable="False">
...
1
vote
1answer
46 views
Do you have to use a converter when using Multibinding in WPF?
I would like to know if there are scenarios where you can use a Multibinding without a converter - and the limitations which force us to use a converter.
In particular I am trying to bind a string ...
1
vote
1answer
79 views
wpf Problems with StringFormat
I have a TextBlock with MultiBinding in the Text property, and StringFormat to concatenate the two results with some additions.
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} {1}" ...
1
vote
1answer
98 views
Don't show multi binding tool tip when empty or null
I'm assuming the reason this isn't working is because my triggers are checking for an empty string or null, yet what I really have is a textblock with a Text property that is empty (or null). Does ...
1
vote
1answer
70 views
WPF DataGrid ClipboardBinding Multibinding possible?
is there a solution to bind multiple properties to my ClipboardBinding.
I tried the following code but this didnt work:
<DataGridTemplateColumn CanUserSort="True" ...
1
vote
1answer
153 views
MultiBinding a TextBox Not Updating Source Property
I have a list box that contains a list of strings in the form of "02x06".. always two digit number, lowercase x, two digit number with no spaces. This is bound to two text boxes, one holds the row ...
0
votes
2answers
43 views
Modifying style and multibinding conditionally
I have a simple XAML that looks as below:
<Window.Resources>
<Converters:ButtonVisibilityConverter x:Key="m_ButtonConverter"/>
</Window.Resources>
<Grid>
<ComboBox ...
0
votes
2answers
50 views
How to MultiBinding too GeometryGroup
I have a working MultiBinding with a Path.Data (Path here is System.Windows.Shapes.Path).
The Converter return type is System.Windows.Media.PathGeometry.
<Path.Data>
<MultiBinding ...
0
votes
1answer
104 views
WPF MultiBinding to Background Property Not Working
MultiBinding to Background property does not work. When it is converted, the background simply turns to the system's default color, not what I have set in the MultiValueConverter. Everything else is ...
1
vote
1answer
91 views
Multibinding as resource in XAML
Is it possible (if yes how), to add multivaluebinding expression into resource.
I have a Multivalue binding, that takes 2 separate binding, and converter parameter in one of those binding.
I have ...
0
votes
1answer
102 views
Evaluate Multibinding when a specific property changes
I have a MultiBinding that looks like this:
<MultiBinding Converter="{StaticResource MyConverter}">
<Binding Path="Object1.Object2.MyObject" />
<Binding ...
0
votes
1answer
64 views
Reactive dependency property when multibinding
I am trying to get a label bound to two properties to react to a change in the second.
The basis behind this is changing a unit label for a field when switching between metric and imperial:
The ...
2
votes
2answers
128 views
How to add conditions in a Multibinding string block? (WPF)
I am trying to format the title of my Application but it seems some basic WPF details escape me. Here is my code:
<Window.Title>
<MultiBinding StringFormat="{}{0} - {1}">
...
0
votes
1answer
26 views
is it possible to Declare MultiBindning in Resources and use it in Controls?
Here is the Code snippet which i want to use in Resource Section
<UserControl.Resources>
<MultiBinding Converter="{StaticResource ResourceKey=EnableConference}"
...
0
votes
1answer
427 views
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 evaluate to true. If for some reason it can't reach either of these bool ...
0
votes
0answers
75 views
Problems from collectionview to textbox using databinding
I've a problem with collectionviewsource. I put the DataContext to an ObservableCollection (declared in code behind), I create a Static Resource of type CollectionViewSource, referred to my ...
0
votes
0answers
94 views
WPF ContextMenu in MultiBinding
First of all I would premise that I am quite new to WPF technologies and this is my first question on stackoverflow.
After searching on the web, I didn't find any solution to my problem so I am ...
1
vote
0answers
155 views
WPF Multibinding converter in DataGrid cell Validation
I am trying to do validation on datagrid cells with Multibinding to enable & disable the validation based on other controls value & data.
<TextBox Validation.ErrorTemplate="{StaticResource ...
0
votes
0answers
70 views
Automatic refresh with DataTemplate, multibinding and child collections
I have a DataGrid thats bound to a CSLA BusinessList object (Jobs), where each Job has a child list (Assignments). Each row in the datagrid displays data from each Job object, as well as data from ...
0
votes
1answer
473 views
WPF CommandParameter MultiBinding values null
I am simply trying to bind two controls as command parameters and pass them into my command as an object[].
XAML:
<UserControl.Resources>
<C:MultiValueConverter ...
0
votes
0answers
391 views
Multibinding with MultiConverter yields DependencyProperty.UnsetValue
I have a list of MyItem. This object represents a shape with some properties, such as width, height and color. Using a converter, I'm trying to change the fill color from (255, r, g, b) to (Alpha, r, ...
2
votes
1answer
295 views
MultiBinding ConvertBack issue
In trying to solve an issue Im having in another project - Ive created the following example to replicate the issue.
The idea is that when the user enters new values, via the slider or textbox, those ...
0
votes
1answer
147 views
MultiBinding DataTemplate for ListView.ItemTemplate?
I just wanted to define a custom DataTemplate for my ListView in order to show some data of a class.
In an earlier project (c#, .net 3.5, wpf) I had something like this:
<Style ...
3
votes
1answer
167 views
Why does only one out of two multibindings work?
I am using a MultiBinding in two different points in my XAML. Here is the code:
<StatusBarItem>
<StackPanel Orientation="Horizontal">
<TextBlock Text="X " />
...
1
vote
2answers
162 views
WPF MultiBinding fails in Syncfusion TabItemExt header
I have a subclass of TabItem as follows, for which I'm trying to set the Header property. I've tried this with a MultiBinding:
<DataEditPane x:TypeArguments="MyType" x:Class="MyDataEditPane">
...
0
votes
2answers
325 views
WPF MultiBinding VS designer exception
Visual Studio 2010 designer says that unhandled exception occurred in MultiValueConverter but I can build my program and it works fine (multibinding also works).
XAML (I set window.DataContext in ...
0
votes
1answer
311 views
Updating the source with multibinding
I have a combo box i.e editable. The combo box in my app acts like a editing control for all the datagrid cells i.e editing the value from the combo box should update the binding of my ...
2
votes
0answers
464 views
Silverlight MultiBinding with a converter, converter not firing after OnPropertyChange
I'm having some issues when using a converter with multiple bindings in a Silverlight project. The task is to disable a button when it is clicked, depending how four properties are evaluated in the ...
0
votes
1answer
89 views
Databinding one property on a Dialog from two contols
I have a Window that I'm showing using ShowDialog. One of the values I'm trying to get from the user is size in GB or TB. So I have two controls for this, an IntegerUpDown from the WPF Extended ...
0
votes
2answers
249 views
Inverted TwoWay-MultiBinding
I'm trying to express an enumeration property in my view-model as a set of radio buttons in my view. So far, so good; I can express that with a two-way MultiBinding:
(rb1.IsChecked, rb2.IsChecked, ...
0
votes
2answers
164 views
ComboBox: Set text of boxitem based on condition
I have a ComboBox with a DataTemplate assigned to it.
The DataTemplate looks like this:
<Style x:Key="ComboBox_EntityCreation_GroupSelect_Style" TargetType="{x:Type ComboBox}">
<Setter ...
1
vote
1answer
182 views
WPF VB.NET IMultiValueConverter and “Conversion from type 'NamedObject' to type Double' is not valid”
Hello i have the following function in my IMultiValueConverter
Public Function Convert(ByVal values() As Object, _
ByVal targetType As System.Type, _
ByVal ...
0
votes
1answer
164 views
MultiBinding to static property and non-static - listview not updating
I've got a static ObservableCollection> named HeaderColorPairs in the non-static class ColorManager (singleton).
This property is bound to a ListView's ItemsSource like this:
...
0
votes
1answer
174 views
Silverlight MultiBinding - doesn't bind in a Template
I am trying to include additional data on RadDataPager by editing the Template.
This code is in DataPager Template:
<TextBlock x:Name="txtPageIndex" Text="{Binding PageIndex, ...
0
votes
2answers
63 views
How to transform a Binding markup extension from inline to element syntax?
I'm a complete .NET/C# nublet. I've inherited some code that defines the UI for a window with XAML and I'm trying to interface with some existing XML garbage. This is probably a very simple question; ...
0
votes
1answer
95 views
Binding same property to two paths in WPF
I have a graph control that has two types of entities: Nodes and Edges (Links).
The graph control exposes a couple of properties namely
myGraphContol.SeletedNode
myGraphControl.SelectedLink
Both ...
1
vote
2answers
275 views
WPF MultiBinding same converter with different binding path
I have ten UI Controls of the same type in a UI and all will be using same multi binding converter.
The problem is I can not create a common style for multibinding which I can apply to all UI ...
1
vote
0answers
75 views
Expression Blend crashes on MultiBinding for TextDecorations
xaml:
<TextBlock Text="SampleText">
<TextBlock.TextDecorations>
<MultiBinding Converter="{StaticResource sampleMultiValueConverter}">
<Binding/>
...
0
votes
1answer
347 views
MultiBinding with Condition
I have a TextBlock in WPF and binding text property of this TextBlock to multi dependency property.
I want to bind these dependency property conditional. in other word I want to bind each time some ...
1
vote
1answer
181 views
Different Format for TextBox when Focused Using MultiBinding Won't Update Source
What I want to do is simple, show one formatting when a TextBox has focus and another when it doesn't. In my case I'm rounding a number to 3 digits when not focused but showing the actual, entire ...