DataGridView显示日期格式问题

Posted 王小豆的烂笔头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataGridView显示日期格式问题相关的知识,希望对你有一定的参考价值。

给DataGridView单元格绑定或者赋值DataTime数据后有时会发现不能显示完整的数据格式,怎么办呢?
给出解决方案如下:

1.指定整列的显示格式:
m_dataGridView.Columns[columnIndex].DefaultCellStyle.Format = "yyyy-MM-dd hh:mm:ss";

2.指定某个单元格的显示格式:
DataGridViewCell cell = m_dataGridView[columnIndex, rowIndex];
DataGridViewCellStyle cellStyle = new DataGridViewCellStyle(cell.Style);
cellStyle.Format = "yyyy-MM-dd hh:mm:ss";
cell.Style = cellStyle;

以上是关于DataGridView显示日期格式问题的主要内容,如果未能解决你的问题,请参考以下文章

求C#高手,Excel中单元格显示的是日期格式,当我读取到DataGridView中时,就变成了文本格式了

Datagridview DateTime 格式不使用系统区域设置

勾选复选框时如何在DataGridView中执行计算C#

BackgroundWorker 填充 DataGridView

我想在DataGridView中显示数据库存的datetime类型日期,怎么转换成string类型后再显示?

如何在 c# 中禁用可点击的 datagridview 中的空单元格