我的系统时钟是 2014 年 9 月 16 日(星期二)
但在代码中,我总是跳到星期一。
DayOfWeek dow = new DateTime().DayOfWeek;
int columnNumber = 0;
columnNumber = columnNumber + 0;
foreach ( DataGridViewRow row in dataGridView1.Rows )
{
switch ( dow )
{
case DayOfWeek.Monday:
columnNumber = 4;
if ( (bool) row.Cells[4].Value == true ) // crashing here with NullReferenceException
{
row.Cells["activeTodayDataGridViewCheckBoxColumn"].Value = true;
}
break;
我有一个DataGridView
- 第 0-3 列是
Text
- 第 4-9 列是
DataGridViewCheckBoxColumn