Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个附加到 DataGrid 的数据表,其中几列有十进制值,我们可以在 GUI 中编辑这些值,但是当我编辑从 0.01 到 0.000000001 的值时,它会显示 1E+8 某个指数值来自 GUI 的 DataGrid。
因此,任何人都可以帮助我,我如何显示精确值而不是指数。
谢谢@Nag
columnName.DefaultCellStyle.Format = "0.00#######"
//C#代码
this.dataGridView1.Columns[i].DefaultCellStyle.Format = "N";