Does Silverlight support StringFormat in binding? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T16:17:22Z http://stackoverflow.com/feeds/question/398353 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/398353/does-silverlight-support-stringformat-in-binding 2 Does Silverlight support StringFormat in binding? Craig Shearer 2008-12-29T19:04:40Z 2009-12-12T01:34:25Z <p>I know that WPF 3.5 SP1 supports a StringFormat in a binding, but can Silverlight do the same? I thought it could, but damned if I can make it work!</p> <p>Here's a snippet of my XAML:</p> <pre><code>&lt;TextBlock Grid.Row="0" Grid.Column="1" Text="{Binding StartTime, StringFormat=t}" /&gt; </code></pre> <p>It compiles OK, but I get a runtime error when it gets to the browser...</p> http://stackoverflow.com/questions/398353/does-silverlight-support-stringformat-in-binding/398572#398572 2 Answer by Michael S. Scherotter for Does Silverlight support StringFormat in binding? Michael S. Scherotter 2008-12-29T20:32:05Z 2008-12-29T20:32:05Z <p>It does not but you can use a Value Converter and specify the ConverterParamenter in the binding. You'll have to create your own Value Converter by deriving a class from IValueConverter like I've shown <a href="http://blogs.msdn.com/synergist/archive/2008/07/30/using-a-converterparameter-in-a-silverlight-2-value-converter.aspx" rel="nofollow">here</a>. Michael</p> http://stackoverflow.com/questions/398353/does-silverlight-support-stringformat-in-binding/398613#398613 0 Answer by Craig Shearer for Does Silverlight support StringFormat in binding? Craig Shearer 2008-12-29T20:47:55Z 2008-12-29T20:47:55Z <p>Thanks Michael.</p> <p>Yes, I've already gone down the IValueConverter route. </p> <p>It just gets a little confusing when working in both WPF and Silverlight as to what's supported in each environment! :-)</p> http://stackoverflow.com/questions/398353/does-silverlight-support-stringformat-in-binding/1891904#1891904 0 Answer by Simon for Does Silverlight support StringFormat in binding? Simon 2009-12-12T01:34:25Z 2009-12-12T01:34:25Z <p>I don't know which version of Silverlight introduced it, but you now can. I'm using Silverlight 4 Beta.</p> <pre><code> &lt;data:DataGridTextColumn Header="Date" Binding="{Binding CreateDt, StringFormat=\{0:d\}}" /&gt; </code></pre> <p><a href="http://blog.davemdavis.net/2009/12/silverlight-4-data-binding-string.html" rel="nofollow">http://blog.davemdavis.net/2009/12/silverlight-4-data-binding-string.html</a></p> <p>Here's a formatting page for <a href="http://www.csharp-examples.net/string-format-datetime/" rel="nofollow">DateTime</a>.</p>