填充具有一列的 DataTable 作为 DateTime 值并与 DataGridView 绑定
我有来自 Excel 文件的数据,其中包含一列作为具有特定格式的日期时间。现在我使用 dataadapter 从文件中检索数据并填充数据表。
在将数据表与 datagridview 绑定之前,如何将 DateTime 列格式更改为特定区域性?
I have data from an excel file which contains one column as DateTime with a specific format. Now I retrieved data from the file using dataadapter and fill the datatable.
How can I change the DateTime column format into specific culture before binding datatable with datagridview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 DataGridView 的 DateTime 列的 DefaultCellStyle 属性来格式化并以区域性特定格式显示 DateTime 值。
这是一个小例子:
希望这会有所帮助。
You could use the DefaultCellStyle property of the DateTime column of your DataGridView to format and display your DateTime values in a culture specific format.
Here is a small example:
Hope, this helps.