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

1
vote
2answers
27 views

WPF Radio Button Fires Converter in strange order

I am writing a simple program using the MVVM Model on WPF. Basicly when the user clicks a radio button in a group of radio buttons, it will update a property in the View Model with the new Account ...
0
votes
1answer
22 views

Set Grid Column Width to Bound Perctange

I want to display a Rectangle with a dynamic Width based on a bound data source. I originally looked into using a Converter, but wasn't able to bind to the converter parameter to get a read dynamic ...
0
votes
1answer
32 views

'Converter' does not implement interface member System.Windows.Data.IValueConverter.Convert

I got this error when I try to run my application: 'InsightSplash.theMenuConverter' does not implement interface member 'System.Windows.Data.IValueConverter.Convert(object, System.Type, object, ...
1
vote
1answer
13 views

is a good idea to use the view model as converter?

I have read this text: https://groups.google.com/forum/?fromgroups=#!topic/wpf-disciples/P-JwzRB_GE8 is it a good idea that the model has the responsability to convert the type of data? If the view ...
0
votes
0answers
20 views

ValueConverter based on Pivot SelectedIndex

I'd like to know how I can change a IValueConverter based on the Pivot SelectedIndex. I'd like to set different units for both my PivotItems. I'm using a ItemTemplate because the layout is the same. ...
0
votes
1answer
41 views

is it possible the binding to two properties?

I have a view model that has two properties. One of them is myDataGridSelectedItems, that is update in the selection changed event of the datagrid (I am using MVVM light to convert an event to ...
1
vote
1answer
49 views

Datagrid ValueConverter based on Min or Max Value

I'm trying to change the colour of a datagrid cell based on if it's the min or max value in the ObservableCollection that the value of the cell is a part of. Now I have the following datagrid and ...
0
votes
1answer
106 views

WPF VB.NET Binding Image Source From String in Data Template

My first WPF application (please be gentle!), and I'm making an app based on events during a football match. So I've set up a Player class, and one of the properties is Nationality eg: Scotland. Then ...
1
vote
2answers
86 views

Format Nullable DataTime in a WPF DataGrid

In a WPF application, i display data in a datagrid. In this datagrid there is some DateTime value. Where DateTime are not getting set, it displays 01/01/0001, it's ok because DateTime are not ...
0
votes
1answer
38 views

How can I use IValueConverter to convert a font in bold

Hi I am trying to convert the font style of a row in a DataGrid depending on the type selected by a combobox. I'm not getting and is returning the following error: "Error 18 ...
0
votes
0answers
63 views

Synchronous Call in Windows Phone 7

I know that I cannot make a true synchronous call in Windows Phone 7. However, I'm trying to at least block the threads from processing until the async call is made or there is a timeout. I've tried ...
0
votes
1answer
37 views

An exception of type 'System.Exception' using a converter XAML

I am using a IValueConverter in XAML in my Windows Phone app. My code <TextBlock Margin="0,0,10,0" Text="{Binding Score, Converter={StaticResource SecondsToMinutesHour}}" Foreground="{Binding ...
0
votes
2answers
49 views

What to put in the Type targetType parameter in IValueConverter

I am calling a IValueConverter class via code behind, but I am not sure what to put in the Type targetType parameter. The object is string but using that give me 'invalid expression term 'string'` my ...
1
vote
1answer
29 views

ValueConverter not called on start up

I have combobox that is bound to a collection. Each item in the collection has a subcollection that might or might not contain items. I have a second combobox to which the subcollection is bound. And ...
0
votes
2answers
106 views

refreshing Value Converter on INotifyPropertyChanged

I know there are some similar topics here but I couldn't get any answer from them. I have to update background of a grid to either an image or a colour in my Windows Phone 7 app. I do this using my ...
0
votes
0answers
105 views

Binding Image Source to resource file based on some other property

I have a ListView whose ItemsSource is bound to a collection. One of the columns of the ListView is an image. This image source must be set to a resource file, and the resource is determined by a ...
0
votes
0answers
28 views

How can I access a resource from a ValueConverter?

I have a UserControl in a custom DLL assembly where I've defined two static BitmapImage resources that represent the state of data in our ItemsControl. I want to use a converter to set the Source ...
0
votes
2answers
102 views

Winrt IValueConverter on a GridView item

I have a ObservableCollection<TimeSpan> Laps which I am databinding to a gridview. This works as expected but I need to apply a converter to set the format of the TimeSpan: In my resources: ...
0
votes
1answer
133 views

WPF RadioButton InverseBooleanConverter not working

I have two RadioButtons which I am binding to a boolean property in the ViewModel. Unfortunately I am getting an error in the converter because the 'targetType' parameter is null. Now I wasn't ...
3
votes
2answers
194 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 ...
2
votes
2answers
76 views

Binding an IValueConverter properly

I am trying to create some sort of label with a glowing background. To achieve this I decided to use a style on a content control. The glow effect comes from two DropShadowEffects, which I wish to ...
1
vote
1answer
69 views

Silverlight Converter to show decimals for two places

I want to display a decimal in a textbox with two decimals. When the page loads the value in the textbox is displayed with two decimals ("0.00") . When I change the value to say 10, it is just showing ...
0
votes
3answers
240 views

Databind a nullable type in XAML\Windows 8 store app

I have a TextBox in XAML which I'm trying to databind to a nullable int. This is the code for my textbox and linked converter: <TextBox x:Name="textArea" InputScope="Number" Text="{Binding Area, ...
3
votes
3answers
143 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 ...
0
votes
2answers
87 views

Using an IValueConverter to enable/disable button's IsDefault Property

My view has 2 buttons called BrowseButton and UploadButton. BrowseButton is default and UploadButton is not. My goal is for the default to change after BrowseButton is clicked (ie BrowseButton is not ...
1
vote
1answer
91 views

Apply Value Converter on changed value in TextBox

I have a simple WinRT (Win8, .NET/C#/XAML) project. One of my XAML TextBox controls has a custom StringValueConverter attached, which formats a databound value from the View Model. This works great, ...
1
vote
2answers
80 views

IValueConverter and Localization

I am currently using an IValueConverter to convert Boolean Values to Yes/No text to display in the RadGridView. Public Function Convert(value As Object, targetType As System.Type, parameter As ...
0
votes
1answer
78 views

Two IMultiValueConverters with identical code, but different names - only one works

I'm having a weird WPF issue. I have two IMultiValueConverter definitions in an assembly that is referenced by my WPF project. Their code is identical, but their names are different. I have cleaned ...
0
votes
0answers
49 views

Is usage of a converter allowed in a datatemplate of listbox.itemstemplate?

I have a listbox that contains players. Through templating the players are displayed on a field. The players holds a topposition and leftposition attribute that are bound to a top and left property of ...
1
vote
2answers
151 views

Add converter to page resources from code behind

I would like to add a specific instance of a class to the resources of a page then use that class as a converter, so in my page constructor I put: this.Resources.Add("converterASD", new ...
0
votes
1answer
49 views

Convert 0 to an image

I have a telerik rad grid with two columns, 1. isconstraint, 2. Quantity isconstraint is a bool which dislays true or false. quantity is int My requirment is to convert 0's in the quantity column ...
2
votes
2answers
188 views

Windows Store App Development - InvalidateRequerySuggested

in regular WPF projects I've used CommandManager.InvalidateRequerySuggested(); in order to force a value converter to be executed again. Now, in Windows Store App development this handy command is ...
1
vote
1answer
380 views

How To Use ValueConverter as StaticResource in Windows Phone 8

Below is my App.xaml <Application x:Class="SpinrWindowsMobile.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
1
vote
1answer
117 views

Loading images source dynamically with IValueConverter

I've problems with IValueconverter and dynamically load a row grid image: public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { ...
0
votes
0answers
28 views

Binding a converter to missing property [duplicate]

I have an IEnumerable containing IPerson's. These IPerson end up as different interfaces. Some of the persons, will have a property called DirectReports but some will not have this property. Only ...
0
votes
2answers
95 views

WPF Binding does not update Button-Content

May someone tell me whats wrong with this sourcecode? when i click the button its not updating ist value? At first binding the converter makes his job. the sourcecode is pretty big so i will post ...
0
votes
1answer
33 views

IValueConverter that sets FontWeight and FontStyle

How can an IValueConverter return FontWeights.Bold and FontStyles.Italic? Based on the value, my converter needs to set the textblock to Bold and Italic or just Normal.
1
vote
1answer
91 views

How can I guarantee that my class can be unboxed as a a particular type?

I created an IValueConverter that converts a bool to a System.Windows.Visibility object (it does the opposite of BooleanToVisibilityConverter). It works fine, except when I try to use it on an ...
0
votes
2answers
524 views

Implementing IValueConverter to convert string to image

I am currently trying to displaying images in my Windows 8 application. I have a method which populates a property of type List<string> with a number of paths to images. I wish to display these ...
1
vote
2answers
269 views

IValueConverter parameter for conditional converting

I have a form with text boxes that take (by default) a decimal value. Unfortunately, business rules say they can also take a percentage value (effectively the same thing, just multiplied by 100). To ...
0
votes
1answer
146 views

WPF AutoCompleteBox Multiple ValueMemberPath

I have a CollectionViewSource populated with business objects from a database. Setting the AutoCompleteBox ValueMemberPath="LNAME" works as intended for all last names. However, I would like to search ...
1
vote
1answer
225 views

WPF Custom Control “style model”

I have custom control in wpf which change his look based on one Property: ... <Grid> <Rectangle Fill="[Something]" /> </Grid> In code i have the property AlarmLevel, when ...
0
votes
2answers
145 views

XAML Converter doesn't work

I have a ScreenHeightConverter, and want to use it on the ItemHeight of a GridView. But I don't know if I use it properly, because if I debug it, it doesn't even jump to the converter. My Code: ...
0
votes
0answers
29 views

Technic of global converter using

To convert pixels to any dimension of millimeter, meter, inch or twips, the using of a Converter is most recommended. In particular while using XAML. But if user switches now the dimension from ...
0
votes
3answers
260 views

how to make checkbox check and uncheck wpf

I have taken checkbox in datagrid <DataTemplate> <CheckBox x:Name="chkActive" IsChecked="{Binding Active, Mode=TwoWay}" Style="{StaticResource checkboxStyleNormal}" ...
1
vote
2answers
158 views

Format part of the text of TextBlock using iValueConverter

I want to make part of the text of a textblock bold. This is what i tried in the IValueConverter but it does not seem to work. public class Highlighter : IValueConverter { public object ...
1
vote
2answers
319 views

The name “DoublerConvert” does not exist in Namespace “clr-…”

I realise that there are other questions with the same title, however I have tried all of those solutions to no avail. I am trying to use a converter that I have made. My other converter works fine, ...
2
votes
2answers
147 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 ...
1
vote
0answers
136 views

WPF Binding - Disabling a GroupBox when a CheckBox is Checked

I'm new to WPF Binding and trying to disable a GroupBox called "GrpRecurEndDate" when a CheckBox "RunOnce" is checked. I tried following the post below but not having much luck getting the binding ...
1
vote
1answer
171 views

Custom IValueConverter inheriting from DependencyObject

I wanted to experiment with being able to have a converter whose arguments can be bound with the current data context. Can anyone tell me why when reaching the Convert() function, the Source property ...

1 2 3 4 5 6