开发者

Is it possible to format a textbox as currency using code behind

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜