I saw this post: How to Conditionally Format a String in .Net?
The first part of the question points to the ability to use conditional formats. How is this done?
In my case, I want to do for instance 100,000 as $100k, and 1,000,000 as $1m. I want to be able to do it with just the FormatString in markup (Silverlight). This is a case where I cant use a value converter (it's inside a style).
Is this possible?