I want to add different image to c# windows form datagridview row header dynamically. it should be do like check any cell value and if it>10 display some image,else display other image.How to do this one?please help me...........
|
Add a OnRowDataBound event handler to the GridView In the event handler - check for the header and process each column accordingly
For more info go here: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridviewroweventargs.row.aspx |
|||||
|
|
I'm not exactly sure how to add images... but this link has a good example of writing numbers in the row headers, so you could update it with the >10 condition, to display your image. . |
|||||
|
|
You can add images to DataGridView row headers in the DataGridView.RowPostPaint event. Here's a link to an article on CodeProject that appears to describe this fairly well (I haven't tried to code myself): Row Header Cell Images in DataGridView You can use the RowPostPaint event to extract the value you want to test against to determine which icon you want to display. Do this by using the event's RowIndex property with the index value of the column you're interested in. Something like this should serve as a starting point:
|
|||
|
|