Tagged Questions

0
votes
2answers
33 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
219 views

Intercept Silverlight DatePicker’s convert from text to DateTime

Hi, I want DatePicker to convert the following text pieces to DateTime (shown in international format) so my customers can write a date in DatePickers textbox faster so it is not just DateTime.Parse …
2
votes
5answers
221 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 …
0
votes
2answers
387 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
74 views

INotifyPropertyChange does not update converter-based values?

I have an image with source set by a ValueConverter. When the bound object raises a ProprtyChanged event (from INotifyPropertyChanged), the image does not change. I assume it is because WPF …
0
votes
1answer
28 views

What’s a good way to parameterize a ValueConverter used in a ControlTemplate?

A templated control I'm working on uses a ValueConverter like so: <ListBox> <ListBox.Resources> <Controls:CodeDescriptionValueConverter …
1
vote
2answers
34 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
173 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
620 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 …
0
votes
2answers
201 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 …
1
vote
3answers
553 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 …