|
Hi All I'm looking for an example how to customize the default RowHeaderCell. I want to display icons instead of the '*', pencil and arrow symbols and add some extra functionality.
I think I have to derive from the DataGridViewRowHeaderCell class and override the paint method?
I started like this
Public Class CustomDataGridViewRowHeaderCell Inherits DataGridViewRowHeaderCell End Class
What I actually looking for is to set property in my custome class to set the image in the row header.so i can set the image when ever i want. for example datagridview1.row(0).headercell.image=image goes here
If anyone has an example please share the code
/Thanks in Advance PRash
|