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...