Welcome to Windows Presentation Foundation (WPF)
Top Tasks :

WPF Team Bloggers

Monday, May 19, 2008 - Posts

  • WPF 3.5 SP1 feature: StringFormat

    One of the new features in 3.5 SP1 is stringformat. The usage is pretty simple. So following are simple snippets showing its use < TextBox Text = " {Binding Path=Double, StringFormat=F3 } " /> < TextBox Text = " {Binding Path=Double, StringFormat=Amount: {0:C}} " /> < TextBox Text = " {Binding Path=Double, StringFormat=Amount: \{0:C\}} " /> < TextBox > < TextBox.Text > < Binding Path = " Double " StringFormat = " {}{0:C} " /> </ TextBox.Text > </ TextBox > < TextBox > < TextBox.Text > < MultiBinding StringFormat = " {}{0:F2} = {1:D} " > < Binding Path = " Double " /> < Binding Path = " Date " /> </ MultiBinding > </ TextBox.Text > </ TextBox > < TextBox > < TextBox.Text > < Binding Path = " Date " StringFormat = " {}{0:MM/dd/yyyy} " /> </ TextBox.Text > </ TextBox > < ListBox Background = " Beige " ItemStringFormat = " F3 " > < sys:Double > 1.11122 </ Read More...

Copyright © 2006 Microsoft Corporation. All Rights Reserved. | Terms of Use | Privacy Statement | Contact Us