Tagged Questions

The .NET Binding classes have an optional Converter property of type IValueConverter which can be used to convert data from its native internal representation to something more convenient to a specific UI objective. A DateTime object could be converted to a string representation in a particular ...

learn more… | top users | synonyms

8
votes
7answers
16k 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" ...
7
votes
2answers
1k views

WPF 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: ...
6
votes
6answers
248 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 ...
6
votes
2answers
415 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
3answers
2k 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 ...
6
votes
4answers
301 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
2answers
89 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 ...
5
votes
1answer
82 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
4answers
1k 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 ...
5
votes
1answer
38 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
403 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 ...
5
votes
2answers
558 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
3k 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 ...
4
votes
1answer
168 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 ...
4
votes
4answers
261 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 ...
4
votes
3answers
787 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 ...
4
votes
1answer
3k 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 ...
4
votes
2answers
3k 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, ...
3
votes
5answers
129 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 ...
3
votes
2answers
458 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 ...
3
votes
1answer
376 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
1answer
49 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 ...
2
votes
1answer
148 views

Return a dynamic resource from a converter

I want to change the color of a WPF control depending on the state of a bool, in this case the state of a checkbox. This works fine as long as I'm working with StaticResources: My control ...
2
votes
5answers
359 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
1answer
132 views

Using IValueConverter For A Bound TextBox

I have a textbox in a ListView: <GridViewColumn> <GridViewColumn.CellTemplate> <DataTemplate> <TextBox Text="{Binding Password,UpdateSourceTrigger=PropertyChanged}"/> ...
2
votes
1answer
234 views

Unknown attribute Foreground on element TextBlock WP 7

Unknown attribute Foreground on element TextBlock I have this error, when I'm trying to change the Foreground color depending on "Read_State" public class ReadConverter : IValueConverter ...
2
votes
1answer
62 views

Silverlight Converting a value using Thresholds

I'm attempting to convert a value using two threshold values, the call to the database will return three variables Double Score; Double LowerThreshold; Double HigherThreshold; If the score is lower ...
2
votes
3answers
274 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 ...
2
votes
2answers
558 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 ...
2
votes
2answers
293 views

Generic type converter - issues with generics

I'm trying to get this working: http://drwpf.com/blog/2009/03/17/tips-and-tricks-making-value-converters-more-accessible-in-markup/ I took code from comments where we have base class and then derive ...
2
votes
1answer
113 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 ...
2
votes
2answers
386 views

How can I set a dependency property on a static resource?

I'm trying to get around the fact that I can't specify a dynamic value for ConverterParameter. See my other question for why I need to bind a dynamic value to ConverterParameter - I don't like the ...
2
votes
2answers
642 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), ...
2
votes
4answers
2k 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 ...
2
votes
1answer
442 views

WPF Converter and NotifyOnTargetUpdated exclusive in a binding?

I have a problem with a databinding in WPF. When I try to use a value converter and set the NotifyOnTargetUpdated=True property to True, I get an XamlParseException with the following message: ...
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
560 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
1answer
159 views

Errors during value conversion

When creating a custom IValueConverter for a user-editable field, the Convert implementation is usually fairly straightforward. The ConvertBack implementation is not, since (in the absence of an ...
2
votes
2answers
241 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
3answers
729 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 ...
2
votes
3answers
2k 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 ...
1
vote
1answer
55 views

How do I get simple editing on a Percent formatted field in WPF TextBox?

When you format a TextBox as currency and click to edit it, the $ and commas do not cause a problem, you can just edit and tab with no problem. When you format a field as a percentage things do not ...
1
vote
1answer
63 views

Two way Multiconverter or Converter with property

I need to convert a two part value into a string and back again for example: {Value = 12.0, Units = DimensionUnits.Inches} Converts to "12 in" This is pretty simple using a multivalue converter ...
1
vote
2answers
150 views

Binding enum to checkboxes and bitwise operation

In a Silverlight Web app, I have a service and its interface in where I declared an Enum with the days of the week: [Serializable] [DataContract] [Flags] public enum WeekDaysFlags : int { ...
1
vote
2answers
225 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>(), ...
1
vote
1answer
137 views

Binding boolean DependencyProperty to a button's Visibility property in Generic.xaml

I have a class called CarSystemWindow that descends from Window, and it has a CanPinWindow boolean dependency property: public class CarSystemWindow : Window { public static readonly ...
1
vote
2answers
239 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 ...
1
vote
2answers
87 views

Apply static resource style to UIElement created in converter

I am binding the ItemsSource of an ItemsControl to a textbox and then using a converter to create UIElement objects based on the Text property of the textbox. I also have a staticresource style that ...
1
vote
1answer
179 views

WPF - Return image from converter using pack URI

I would like to create a WPF converter to return a certain image depending on a boolean value. I have so far got the following code: return (bool) value ? new BitmapImage(new ...
1
vote
1answer
137 views

Bind a Converter defined in the code behind

As part of the solution refactoring I had to move the Converter in to a Dependency Injected UI service. Now my ValueConverter is present inside an Instance. Earlier I had defined a local resource and ...

1 2 3 4