indows应用程序中将datagridview单元格值设置为d

indows应用程序中将datagridview单元格值设置为d

本文介绍了在Windows应用程序中将datagridview单元格值设置为datetimepicker。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在windows窗体中将datagridview单元格值设置为datetimepicker。

我得到的单元格的值格式为MM / dd / yyyy hh:mm:ss。

我想把它改成格式dd / MM / yyyy hh:mm:ss。



这是我的代码:

I want to set datagridview cell value to datetimepicker in windows forms.
The value of the cell that I am getting is in the format "MM/dd/yyyy hh:mm:ss".
I want to change it to the format "dd/MM/yyyy hh:mm:ss".

This is my code:

dateTimePicker1.Value = Convert.ToDateTime(dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString())

推荐答案


这篇关于在Windows应用程序中将datagridview单元格值设置为datetimepicker。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 05:57