c# 2003 datagrid如何获取当前格子列头文本?
生疏了。c#   2003   datagrid如何获取当前格子列头文本? 
 dgrd_workertime.CurrentCell
------解决方案--------------------我用的 2005 ,2003 中差不多,模仿一下:   
             int colIndex = this.dataGridView1.CurrentCell.ColumnIndex;   
             DataGridViewColumn col = this.dataGridView1.Columns[colIndex];   
             Console.WriteLine(string.Format( "Column Name: {0}\tIndex: {1} ", col.Name, col.Index));