Tagged Questions

0
votes
2answers
32 views

Bind Image.Source according to Boolean without a converter?

Hi I want to have an image bound to a boolean and have the source of the image to depend on the boolean value i.e. true source="image1" false source="image2" I was wondering if …
1
vote
2answers
693 views

How to return specific date format as JSON in Grails?

In Grails, you can use the JSON converters to do this in the controller: render Book.list() as JSON The render result is [ {"id":1, "class":"Book", "author":"Stephen King", …
2
votes
4answers
254 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 …
0
votes
1answer
174 views

How can I easily add a WPF Converter item template to Visual Studio?

I find myself creating Converters often and would like to be able to: right-click on my Converters folder Add New Item... choose Converter Item Template I found these instructi …
2
votes
3answers
489 views

Currency formatting on ComboBox items

I have a ComboBox bound to an ObservableCollection of decimals. What is the correct way to apply our currency converter to the items? Edit: a) I have an existing currency conver …