Tagged Questions

2
votes
2answers
136 views

C# - Passing View to the converter as parameter

I have a view with couple of data templates in the resources of that view. (I don't want to put it somewhere global since its only needed by this particular view) Based on value I get in converter I ...
2
votes
4answers
1k views

Why does my converter giving an invalid cast error?

I created a Converter to convert from double to integer. But the line "return (int)value;" always gets a "specified cast is not valid." What do I have to do so that my Converter successfully ...
0
votes
2answers
72 views

Validating a nullable int using a IValueConverter

I'm trying to perform a validation property. We have a nullable property called: public int? Number { get { return _number; } set { if (_number != value) { ...