开发者

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

开发者 https://www.devze.com 2023-04-08 21:00 出处:网络
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.

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

精彩评论

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