I have a textbox on a WPF Window (form) that is NOT "bound" using Databinding. I am looking for a way to format the textbo开发者_StackOverflow中文版x as Currency using code.
Is that possible?
Without any further detail:
var myNumber = 45.78d;
MyTextBox.Text = myNumber.ToString("C");
You can learn more about formatting numbers on MSDN.
精彩评论