TextBox combined with LinkLabel in a Datagridview column

I have a Datagridview cell with some text. I would like to make only one word of this text in a link that will open the website but save the rest of the words as usual.

Is this even possible?

+3
source share
1 answer

One way to achieve this would be to extend the (default) DataGridViewTextBoxCell class ( create a new one, inherit this behavior) with some properties, such as changing the cursor, clicking to open the link if it is on the surface, and so on.

+1
source

All Articles