时间:2019-01-17 标签:c#textboxdecimalformatting
我希望绑定到货币(SqlServer)实体字段的文本框仅显示两位小数而不是四位。
我使用 DevExpress textEdit
和 CalcEdit
框,具有以下显示和编辑格式: "#,##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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我强烈建议尽可能使用内置格式字符串,例如
N2
。使用 John Sheehan 的 .NET 格式字符串快速参考备忘单当有疑问时。它包含有关在 .NET 中格式化数字和日期所需的所有信息。
DevExpress 控件通常还要求您指定要格式化的内容(例如数字、日期等):
如果未指定格式类型,则不会应用格式字符串。
对于 TextEdit,您应该指定一个 Mask。
I would highly recommend using the built-in format strings wherever possible, such as
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.):
If the format type isn't specified, the format string won't be applied.
With TextEdit you should specify a Mask instead.
使用这个:
例如,您有一个名为 amount 的变量。然后像这样格式化它,
它会给出小数点后两位的金额。
希望这有帮助。
Use this:
for example you have a variable named amount. then format it like this,
It will give you amount in two decimal places.
Hope this helps.
尝试
#,##0.00
——您不需要尾随“#”。Try
#,##0.00
-- you shouldn't need the trailing "#".我通常只是在验证新的格式化值后将其写回到文本框中。因此,如果它是千分之一的小数,那么在经过验证的事件处理程序中,我将值解析为这样的浮点数后将其写回到文本中。 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").