Tagged Questions

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 ...
3
votes
2answers
283 views

Unable to find enum type for static reference in WPF

I'm trying to bind an enum to a radio button in WPF (Inspired by this answer), but I have trouble finding the enum type for the converter parameter: The enum is defined in the following way ...
3
votes
1answer
303 views

is it a bad idea to have static wpf value converters?

Instead of declaring the converter in the Resources, i can do something like IsEnabled={Binding Path=SomeProp, Converter={x:Static namespace:Converter.Instance}}" where Instance is instantiated ...
2
votes
1answer
233 views

Combining ValidationRule and Value Converters for a textbox

I have a simple problem that I just cant find a good solution for. I have a textbox bound to a double property value. The user can enter values into the textbox, but I only want to allow values ...
2
votes
3answers
184 views

Why do these two methods of loading images from SQL CE into a WPF Image produce different results?

In a ValueConverter, I was trying to convert a System.Data.Linq.Binary (SQL CE image) to a BitmapImage. This method works (image is show correctly on the form): public object Convert(object value, ...
2
votes
3answers
181 views

Is using value converters to generate GUI-friendly strings a misuse of value converters?

Currently, I use value converters to generate user-friendly strings for the GUI. As an example, I have a window that displays the number of available entities in the status bar. The Viewmodel simply ...
2
votes
5answers
665 views

Should your ViewModel expose XAML elements as properties or not?

Over at the StackOverflow question How can WPF Converters be used in an MVVM pattern? I've learned that Value Converters should not be used in the MVVM pattern since the functionality of a Value ...
1
vote
3answers
203 views

Using resources as convertion results in a bind converter

When I try to bind a valueconverter from a defined enum Status to brush, I get an error in my XAML designer: 'OKStatus' resource not found. The application works fine runtime, but I'm not able to ...
1
vote
1answer
622 views

How can I display array elements in a WPF DataGrid?

I'm trying to display a series of rows in a WPF DataGrid where each row contains an array of booleans (the number of which is the same for all rows, it's not a jagged 2D array) that I want to display ...
1
vote
2answers
266 views

How to implement WPF ValueConverter that needs data from viewmodel?

i am writing an application that has a viewmodel and a usercontrol that displays data from this viewmodel. The viewmodel contains an entity "Appointment", and those appointments have a property ...
1
vote
1answer
212 views

Updating an Observable Collection Based on a combobox selection

So I have an ObservableCollection of items called "Class1" and Class1 has a property named "ID". I use a datagrid from the WPFToolkit and bind to this collection. Within the datagrid is a combobox ...
1
vote
1answer
237 views

wpf converter in xaml

I know there are a few ways to use value converter in xaml, like using StaticResource to get converter from resources or Static to get from a static instance. My question is, for whatever reason, I ...
1
vote
0answers
172 views

IDataErrorInfo with ValueConverter

I'm somehow doing it wrong, but I can't figure it out: I have a model like this: public class Person : IDataErrorInfo { public DateTime Birthdate { get { return _birthdate; } set { ...
1
vote
3answers
558 views

When to use value converters in a mvvm application?

If one is implementing a WPF application using the MVVM design pattern, is there any situation in which to use value converters? It seems to me that value converters do exactly the same what the view ...
1
vote
3answers
186 views

Displaying a custom value type in WPF without using a Value Converter

The system I'm working on uses a large number of custom value types internally. I'm working on a prototype UI using WPF. WPF does not know how to display the custom types. I know that I can write a ...
1
vote
2answers
3k views

WPF binding to another property's binding in a style

I'm not sure the best way to ask this question (sorry for the ambiguous question title), but essentially I'd like to set the MaxLength property on a TextBox using a value converter that is passed in a ...
1
vote
2answers
88 views

Anything similar to WPF's ValueConverters for ASP.Net?

After doing a project with WPF and getting very much attached to it's excellent databinding capabilities, I have now moved back to ASP.Net and am starting to miss some of WPF's stuff. My question ...
1
vote
3answers
603 views

My databinding with value converter does not work

I've got a simple Item-class, that looks like this: public class Item : DependencyObject { public int No { get { return (int)GetValue(NoProperty); } set { SetValue(NoProperty, value); } } ...
1
vote
3answers
3k views

Creating a WPF ValueConverter for a Brush

On the Nerd Plus Art blog today, there was a post about creating WPF Resources for arrows, which the author uses frequently. I have a side project that has Back and Forward buttons, so I thought that ...
1
vote
3answers
3k views

dynamic datatemplate with valueconverter

I want to show data in a wpftoolkit datagrid where the data is a collection of public class Thing { public string Foo { get; set; } public string Bar { get; set; } public ...
0
votes
1answer
31 views

valueconverter's unknown in resource dictionarys

i'm using a listbox style twice in my project so i want to use it in a resource dictionary. This listbox style has two value converter's in it, so i instantiated the converters in the same resource ...
0
votes
1answer
43 views

Converter/styles selector without binding?

Is it possible to use a converter/style selector without having to use databinding? I want the style of my object to change if a certain value is reached. Here is what i have ...
0
votes
0answers
17 views

How to get wpf grid view values after they are bound and converted?

I have a WPF list view in which I use a grid to display a series of values that come from the database, some of those values are converted using binding expressions(DisplayMemberBinding) with ...
0
votes
2answers
112 views

Access Datacontext And A Property In Code Behind At The Same Time

I am using MVVM/WPF and trying to do something seemingly simple, but cant find a clean solution. I want to do the following: When a property changes in the model (WPF Textbox text would be changed ...
0
votes
2answers
86 views

Value Converters - Access Convert() variables in ConvertBack() method?

I have a converter which has a couple of input variables (an object and a TextBox) and then returns the TextBox.Text String property. The problem I'm running into is in the ConvertBack() Method of my ...
0
votes
2answers
284 views

Value Converter. Force WPF to call it only one time

let's say I have following code : <ContextMenu IsEnabled="{Binding Converter={StaticResource SomeConverterWithSmartLogic}}"> So, I did not specified any binding information except ...
0
votes
1answer
286 views

ResourceDictionary as ContentProperty in a ValueConverter

To convert Enums to Icons I use a value converter like that: public class IconConverter : IValueConverter { public ResourceDictionary Items { get; set; } public object Convert(object value, ...
0
votes
2answers
149 views

Value converter is not triggered within user control if used as list box item

To display a WPF list box, I use a user control (MessageRowTemplate) as list box item. The user contrul uses a value converter (MessageTypeToBrushConverter). For some reason, the value converter is ...
0
votes
3answers
151 views

Using a ValueConverter after a DataContext switch

I want to try out a small, custom ValueConverter in a class which after being instantiated (via default constructor, which only calls InitializeComponents() ), is given another DataContext, ...
0
votes
1answer
490 views

WPF Value Converter Trigger Reconvertion at custom event?

Is there any way to force wpf to run the value converter again on a specific event?
0
votes
2answers
373 views

INotifyPropertyChange does not update converter-based values?

I have an image with source set by a ValueConverter: <Image Source="{Binding Converter={StaticResource siConv}}" Width="16" Height="16"/> When the bound object raises a ProprtyChanged event ...
0
votes
2answers
1k views

WPF : Control Binding - Trigger IValueConverter from C# code

In my XAML Code I have bound the Height property of an control to the ActualHeight for it's parent control. Because I have to calculate an offset from the original value I use and IValueConverter. ...
0
votes
2answers
529 views

WPF : An alternative way to specify a ValueConverter on binding

Most common way I encountered of specifying a value converter for a binding is to: 1. Create an instance of the value converter as a resource with a key. 2. Reference the instance using StaticResource ...