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 converter that I must use b) .NET 3.0
Do I need to template the 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 converter that I must use b) .NET 3.0 Do I need to template the items?
| ||||
|
feedback
|
|
Your best bet if you have some code to do the conversion is indeed to run each item through an IValueConverter via a template.
So you just define your CurrencyConverter class such that it implements IValueConverter and calls your code to turn the given amount into a formatted string. | |||
|
feedback
|
|
You can use the ItemStringFormat property on ComboBox to tell it how to format each of its items:
However, be aware that when using "c" as a currency formatter, it will use the currency defined by the local machine. If your values are defined in $ but your client PC is running with pounds or yen as their currency symbol, they won't be seeing what you want them to see. | |||||||||
feedback
|
|
Use StringFormat in the Binding expression like
See this blog for more details. A ValueConverter is another way - StringFormat doesnt work on .NET3.0 it needs WPF3.5 SP1. | ||||
|
feedback
|