vote up 1 vote down star

Is there any way to edit column names in a DataGridView?

flag

63% accept rate

4 Answers

vote up 2 vote down check

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.

link|flag
vote up 1 vote down

I guess what you want is to edit the HeaderText property of the column:

myDataGrid.TableStyles[0].GridColumnStyles[0].HeaderText = "My Header"

Source: http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=186908&SiteID=1

link|flag
vote up 1 vote down

You can also edit directly without knowing anything as posted above :

protected void gvCSMeasureCompare_RowDataBound(object sender, GridViewRowEventArgs e)
    	{
    		if (e.Row.RowType == DataControlRowType.Header)
    			e.Row.Cells[0].Text = "New Header for Column 1";
}
link|flag
vote up 2 vote down

You can also do it with myDataGrid.Columns[0].HeaderText = "My Header", but the myDataGrid will need to have been bound to a DataSource.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.