时间:2019-01-17 标签:c#textboxdecimalformatting

发布于 2024-12-01 05:41:50 字数 243 浏览 0 评论 0原文

我希望绑定到货币(SqlServer)实体字段的文本框仅显示两位小数而不是四位。

我使用 DevExpress textEditCalcEdit 框,具有以下显示和编辑格式: "#,##0.00#;(#,##0.00#)"; 但我总是得到四位小数(零)。

我在 Janus Grid 中使用相同的格式字符串,值显示正确。

任何想法,谢谢。

I want my text boxes which are binded to money (SqlServer) entity fields, to show just two decimal places instead of four places.

I use DevExpress textEdit and CalcEdit boxes with the following display and edit format : "#,##0.00#;(#,##0.00#)"; But I always get four decimal places (zeros).

I use the same format string in Janus Grid, the values get display correctly.

Any Idea, thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我强烈建议尽可能使用内置格式字符串,例如 N2

string s = number.ToString("N2");

使用 John Sheehan 的 .NET 格式字符串快速参考备忘单当有疑问时。它包含有关在 .NET 中格式化数字和日期所需的所有信息。

DevExpress 控件通常还要求您指定要格式化的内容(例如数字、日期等):

calcEdit.Properties.DisplayFormat.FormatType = FormatType.Numeric;
calcEdit.Properties.DisplayFormat.FormatString = "N2";

如果未指定格式类型,则不会应用格式字符串。

对于 TextEdit,您应该指定一个 Mask。

textEdit.Properties.Mask.MaskType = MaskType.Numeric;
textEdit.Properties.Mask.EditMask = "N2";

I would highly recommend using the built-in format strings wherever possible, such as N2.

string s = number.ToString("N2");

Use John Sheehan's .NET Format String Quick Reference Cheat Sheet when in doubt. It has all the info you need about formatting numbers and dates in .NET.

DevExpress controls usually require you to also specify what you are formatting (e.g. a number, date etc.):

calcEdit.Properties.DisplayFormat.FormatType = FormatType.Numeric;
calcEdit.Properties.DisplayFormat.FormatString = "N2";

If the format type isn't specified, the format string won't be applied.

With TextEdit you should specify a Mask instead.

textEdit.Properties.Mask.MaskType = MaskType.Numeric;
textEdit.Properties.Mask.EditMask = "N2";
給妳壹絲溫柔 2024-12-08 05:41:50

使用这个:

例如,您有一个名为 amount 的变量。然后像这样格式化它,

amount.ToString("###,###.00");

它会给出小数点后两位的金额。

希望这有帮助。

Use this:

for example you have a variable named amount. then format it like this,

amount.ToString("###,###.00");

It will give you amount in two decimal places.

Hope this helps.

空‖城人不在 2024-12-08 05:41:50

尝试 #,##0.00 ——您不需要尾随“#”。

Try #,##0.00 -- you shouldn't need the trailing "#".

遗弃M 2024-12-08 05:41:50

我通常只是在验证新的格式化值后将其写回到文本框中。因此,如果它是千分之一的小数,那么在经过验证的事件处理程序中,我将值解析为这样的浮点数后将其写回到文本中。 this.textbox1.Text = speed.ToString("N3").

I usually just write the new formatted value back into the text box after it has been validated. So if its a decimal to the thousandths then in the validated event handler I write the value back into the text after its been parsed to a float like this. this.textbox1.Text = speed.ToString("N3").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文