IValueConverter is an interface defined in Microsoft .NET XAML for use in WPF and Silverlight. It is used in data binding to convert data from one format to another. The conversion can be one-way or bidirectional.

learn more… | top users | synonyms

21
votes
3answers
6k views

Is there a way to chain multiple value converters in XAML?

I've got a situation in which I need to show an integer value, bound to a property on my data context, after putting it through two separate conversions: Reverse the value within a range (e.g. range ...
16
votes
2answers
4k views

ImageSourceConverter error for Source=null

I'm binding the Source property of an Image to a string. This string may be null in which case I just don't want to display an Image. However, I'm getting the following in my Debug output: ...
12
votes
2answers
3k views

Moq + Unit Testing - System.Reflection.TargetParameterCountException: Parameter count mismatch

var mock = new Mock<IValueConverter>(); mock.Setup(conv => conv.Convert(It.IsAny<Object>(), It.IsAny<Type>(), It.IsAny<Object>(), ...
12
votes
6answers
21k views

Pass value of a field to Silverlight ConverterParameter

I'm writing my very first Silverlight app. I have a datagrid with a column that has two labels, for the labels, i am using an IValueConverter to conditionally format the data. The label's "Content" ...
11
votes
4answers
1k views

How can I run code inside a Converter on a separate thread so that the UI does not freeze?

I have a WPF Converter which is slow (computations, online fetching, etc.). How can I convert asynchronously so that my UI doesn't freeze up? I found this, but the solution is to place the converter ...
11
votes
6answers
2k views

WPF ValueConverter - Standard return for unconvertible value

Over the course of the last year or so I have seen many different value converters for many different purposes, from many different authors. One thing that sticks out in my mind is the wide variance ...
8
votes
2answers
5k views

Exception: 'IValueConverter' type does not have a public TypeConverter class

I have just run into this exception on an IValueConverter I am implementing: IValueConverter type does not have a public TypeConverter class Has anyone else come across this? What's the cause, ...
8
votes
4answers
4k views

WPF MVVM Radio buttons on ItemsControl

I've bound enums to radio buttons before, and I generally understand how it works. I used the alternate implementation from this question: WPF: How to bind RadioButtons to an enum? Instead of ...
8
votes
2answers
1k views

Binding Double to TextBox

I have often used TextBox to bind to Integers without much problem. However if I try to bind a TextBox to a Double it doesn't work. When I type 5,85 ( , being my cultures decimalSeperator) I pass ...
6
votes
3answers
2k views

What is the use of ConvertBack method in IValueConverter interface?

What is the use of ConvertBack method in IValueConverter interface. When it will call? Or what is the order of invocation of Convert and ConvertBack method. I have ask question here because: I have ...
6
votes
1answer
2k views

When does ConvertBack method get called?

I know that when data is about to be displayed, Convert() method is called to convert the data and the converted data is displayed instead. I'm wondering when ConvertBack() method gets called? What ...
6
votes
2answers
782 views

Binding converted Enum to a ComboBox

I tried to bind the following Enum to a ComboBox Public Enum PossibleActions ActionRead ActionWrite ActionVerify End Enum I can't change the Enum itself, but I do not want to display these ...
6
votes
4answers
354 views

Why would putting a no-op Converter on a Binding change its behavior?

I'm in the midst of testing a user control I've built, and I'm encountering something that's inexplicable to me. The control's an extension of the ComboBox that handles values of a specific custom ...
5
votes
4answers
9k views

WPF BooleanToVisibilityConverter that converts to Hidden instead of Collapsed when false?

Is there a way to use the existing WPF BooleanToVisibilityConverter converter but have False values convert to Hidden instead of the default Collapsed, or should I just write my own? I'm on a project ...
5
votes
1answer
8k views

Why do I get a DependencyProperty.UnsetValue when converting a value in a MultiBinding?

I have an extremely simple IMultiValueConverter that simply OR's two values. In the example below, I want to invert the first value using an equally simple boolean inverter. <MultiBinding ...
5
votes
3answers
3k views

Binding ObservableCollection<> to a TextBox

I have data comming back from web service in the form of a ObservableCollection<string> I want to bind the collection to a read-only TextBox so that the user can select and copy the data to the ...
5
votes
2answers
7k views

How to use MultiBinding in a WPF ComboBox

This is driving me NUTS!!! I have a ComboBox used to filter a query by employee which works fine but only displays the employees first name. I want to use a MultiValueConverter to display the ...
5
votes
3answers
2k views

How to handle exception in Value converter so that custom error message can be displayed

I have a textbox that is bound to a class with a property of type Timespan, and have written a value converter to convert a string into TimeSpan. If a non number is entered into the textbox, I would ...
5
votes
1answer
400 views

WPF: One-way IValueConverter

From what I've been told, I need to create an IValueConverter to do my custom formatting. The problem is my formatting is one-way, there is no legitmate ConvertBack implementation. So, how do I ...
5
votes
3answers
3k views

Databinding on a IValueConverter

Does anybody know if it is possible to do databinding on an IValueConverter based class? I have the following converter: [ValueConversion(typeof(int), typeof(Article))] public class ...
5
votes
1answer
44 views

Showing numbers as binary from a bound source

I need to display a number as binary string (e.g. 8 => 1000). Sure I can convert it using BitConverter and set the text of my TextBox on my own in the code behind file. But this looks somewhat ugly. ...
5
votes
1answer
880 views

IValueConverter not working for SolidColorBrush

I have a progress bar that I want to change color depending on a boolean value; true is green and false is red. I have code that seems like it should work (it returns the correct value when I bind it ...
5
votes
2answers
999 views

Binding to FontWeight in Silverlight 4 using a value converter

I want to compare two versions of various properties and bold one of them if it is not equal to the other. Since SL4 doesn't support MultiBinding I am binding the FontWeight to "." so that the entire ...
5
votes
2answers
414 views

Databinding ItemsControl (DataTemplate) not updating /only receives values on program start up

EDIT2: When the chart gets populated i am unable to change the values anymore. Even when i change the values in the list (where the ItemControls get the values from) the chart does not seem to update ...
4
votes
2answers
2k views

Improved IValueConverter — MarkupExtension or DependencyObject?

I saw online 2 different approaches to enhancing an IValueConverter. One of them extended a ValueConverter from MarkupExtension, the other from DependencyObject. I can't extend from both, so I'm ...
4
votes
5answers
1k views

Combobox Converter for Enumerations

I have an enumeration that has values like HomeRun, StolenBase, FirstBase, etc. I want to display these values in a combobox, with a space inserted before the capital letters, so it will display as ...
4
votes
1answer
895 views

Can I use enum as a ConverterParameter?

Currently i'm using integer as the ConverterParameter, and casting it to the Enum in the Converter. I find it very unreadable in the XAML. I wonder if there is a way to declare the Enum in the ...
4
votes
1answer
559 views

WPF DataBinding Very Slow when I use Convert to format a date

I'm writing a simple app to display some data on a DataGrid. The data is just a measurement (float) and a timestamp. The timestamp a uint and is in seconds since 2000. I sucessfully accomplished ...
3
votes
3answers
2k views

Should I declare converters in App.xaml or as a per-file resource?

When declaring converters in a WPF application, should I: Declare all my converters in the App.xaml (i.e. in <Application.Resources/>) so it's available to the entire application Declare only ...
3
votes
2answers
3k views

DataContext as Source for Converter Binding Within Resources

<Canvas.DataContext> <ViewModels:VMSomeControl Model="{Binding RelativeSource={RelativeSource TemplatedParent}}" /> </Canvas.DataContext> <!-- DataContext is ...
3
votes
2answers
1k views

How to conditionally format axis values in Silverlight Toolkit LineSeries

I am trying to conditionally format the numbers that appear in a NumericAxis axis for a LineSeries (from Silverlight 4 Toolkit). To be more specific, I want numbers that are >=10000 and <=0.0001 to ...
3
votes
3answers
139 views

Null To Boolean IValueConverter not working

How do I use an IValueConverter to convert nulls into booleans? I'm using wpf to try to display a bunch of boolean values (in checkboxes). When a new record is created, these values are null, and ...
3
votes
2answers
192 views

Updating datagridview row background color with datatriggers and IValueConverter

I have a datagridview and am trying to dynamically update the background color of a row depending on the result of a comparison between one column and two others. My datagridview is bound to a ...
3
votes
2answers
265 views

IValueConverter maintain state if cannot set converter parameter

I have a IValueConverter which converts an enum value to a localised string via a lookup table, and vice versa. To find the correct table it first needs to know the name of the table. When the enum ...
3
votes
1answer
279 views

WPF: How do I register additional implicit value converters?

I found a question asking about ways to avoid adding custom value converters to one's application resources: Using Value Converters in WPF without having to define them as resources first However ...
3
votes
1answer
233 views

Is it possible to supply a type converter for a static resource in Silverlight?

I'm trying to style a LineSeries chart that has DateTime objects on its independent axis and integer values in its dependent axis. I want to show a tooltip text whenever a user overs his mouse on a ...
3
votes
2answers
2k views

using IValueConverter with current DataContext in two-way binding

I'm having issues with a converter i'm using to convert between a string and our timeformat. The converter itself works fine and is implemeneted like this: [ValueConversion(typeof(string), ...
3
votes
1answer
94 views

Semantically, should Commands and Converters be closer to Views or ViewModels?

I'm wondering if in MVVM I should design Converters and Commands be closer to Views or ViewModels. It's a gray zone for me as they are two types of glue objects bridging the gap between components. ...
3
votes
1answer
656 views

where does IValueConverter.Convert source the CultureInfo parameter from?

I'm going through some silverlight apps and reviewing date formatting to make sure the presentation is appropriate for the viewer. with an implementation of IValueConverter, where does the culture ...
2
votes
5answers
2k views

Get the Source value in ConvertBack() method for IValueConverter implementation in WPF binding

I am binding a dependency property to textboxex in WPF. The property is a string that has some values separated by '/' (example: "1/2/3/4" ). I need to bind individual values to separate textboxes ...
2
votes
2answers
145 views

Implement IValueConverter in class library project

I have a solution with about 12 projects, one is set as the startup project and this contains the main window. At the moment all of my IValueConverters are inside this project. I now want to move ...
2
votes
1answer
876 views

Why do we need to use ConvertBack in IValue Converter

I am not sure Why we need to use I ConvertBack method in IValueConverter. In the Convert method itself we do the conversion and return the updated value to be bound in our control. So in which ...
2
votes
2answers
3k views

WPF IValueConverter - converting multiple values into a single value

I'm trying to maintain someone else's code right now where that person is a WPF expert. I, on the other hand, am not. :) The code uses the IValueConverter to convert a state enumeration into a ...
2
votes
1answer
247 views

Using ValueConverter to return StaticResource

I'm trying to setup static resources for different states in my business entities. The idea being that I can use a value converter to take the business entity and return the corresponding background ...
2
votes
2answers
1k views

ComboBox of Types with a ValueConverter and Custom Attributes

I'm using MVVM, in case it makes a difference. My MainWindowViewModel has two DependencyProperties, TheList, and TheSelectedItem. TheList is a List<Type>, TheSelectedItem is a Type. The ...
2
votes
2answers
910 views

What is the best practice for WPF ValueConverter error handling?

Two function should be implemented, and I am wondering what type of validation I need to do on inputs and how to manage errors. Public Function Convert(ByVal value As Object, ByVal targetType As ...
2
votes
3answers
385 views

Having an issue with CoverterParameter Binding in silverlight

I am having an issue with the xaml parser not liking my binding statement but i cannot see anything wrong with the statement. Invalid attribute value {Binding VehicleSpeed, ...
2
votes
2answers
2k views

WPF and MVVM: Changing data binding converter at runtime

I am using WPF and the MVVM pattern in my user interface. In my ViewModel I have a List containing distances in millimetres, which I display in a ListView by binding ListView.ItemsSource to the List. ...
2
votes
1answer
288 views

The point of ValueConversionAttribute class?

What is the point of this attribute? After adding it I still need to make a cast on value object. [ValueConversion(sourceType: typeof(double), targetType: typeof(string))] public class SpeedConverter ...
2
votes
2answers
878 views

Implementing IValueConverter interface in Silverlight

i have the following IValueConverter implementation public class MyValueConverter : IValueConverter { #region IValueConverter Members public object Convert(object value, Type targetType, ...

1 2 3 4 5 6