填充具有一列的 DataTable 作为 DateTime 值并与 DataGridView 绑定

发布于 2024-12-09 08:50:48 字数 136 浏览 0 评论 0原文

我有来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惯饮孤独 2024-12-16 08:50:48

您可以使用 DataGridView 的 DateTime 列的 DefaultCellStyle 属性来格式化并以区域性特定格式显示 DateTime 值。
这是一个小例子:

DataTable dt = new DataTable();
dt.Columns.Add("name", typeof(string));
dt.Columns.Add("dayofbirth", typeof(DateTime));

// Fill your data table
...

// Bind your data table against the grid view.    
dataGridView1.DataSource = dt;

// Set format styles for your date columns (after binding)
CultureInfo ci = CultureInfo.CreateSpecificCulture("en-US");
dataGridView1.Columns[1].DefaultCellStyle.FormatProvider = ci;
dataGridView1.Columns[1].DefaultCellStyle.Format = ci.DateTimeFormat.LongDatePattern;

希望这会有所帮助。

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:

DataTable dt = new DataTable();
dt.Columns.Add("name", typeof(string));
dt.Columns.Add("dayofbirth", typeof(DateTime));

// Fill your data table
...

// Bind your data table against the grid view.    
dataGridView1.DataSource = dt;

// Set format styles for your date columns (after binding)
CultureInfo ci = CultureInfo.CreateSpecificCulture("en-US");
dataGridView1.Columns[1].DefaultCellStyle.FormatProvider = ci;
dataGridView1.Columns[1].DefaultCellStyle.Format = ci.DateTimeFormat.LongDatePattern;

Hope, this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文