Is there any way to edit column names in a DataGridView?
|
|
|
|
|
|
|
I don't think there is a way to do it without writing custom code. I'd implement a ColumnHeaderDoubleClick event handler, and create a TextBox control right on top of the column header. |
|||
|
|
|
|
I guess what you want is to edit the HeaderText property of the column:
Source: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=186908&SiteID=1 |
||
|
|
|
|
You can also edit directly without knowing anything as posted above :
|
||
|
|
|
|
You can also do it with myDataGrid.Columns[0].HeaderText = "My Header", but the myDataGrid will need to have been bound to a DataSource. |
||
|
|
