我一直在寻找了一段时间,现在的这个答案:
我有一个有日期的细胞一个DataGridView,我需要做的价值在该单元格datetime值可以与我的DateTimePicker去
到目前为止,我已经做到了这一点,但它不工作,它给了我一个System.FormatException(显然它不能识别字符串作为一个DateTime,这听起来是正确的)
这是有问题的代码:
int index = ReservationDataGridView.SelectedRows[0].Index;
string date = ReservationDataGridView[0, 1].Value.ToString();
DateTime test = DateTime.ParseExact(date, "dd/MM/yyyy - hh:mm tt", System.Globalization.CultureInfo.InvariantCulture);
MessageBox.Show(test.ToString()
这是我的DateTimePicker是如何被格式化:
ReservationDateTimePicker.Format = DateTimePickerFormat.Custom;
ReservationDateTimePicker.CustomFormat = "dd/MM/yyyy - hh:mm tt";
这是日期,如何看待在DataGridView:
我如何能在DataGridView的日期值转换为日期时间,将适合与该格式将DateTimePicker任何想法?