111,086
社区成员




private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if (e.ColumnIndex == 1)//改成你的列索引
{
e.CellStyle.Format = "0.####";
}
}