Developing In: c# winforms without any Database Connections
Description: In my DataGridView, columns were dynamically generated.At some point some of the columns need to be DataGridViewLinkColumn property. I was tried in many ways but didn’t achive this.
I hope someone from here would help me 🙂
Thanks In Advance.
You will need to switch off
AutoGenerateColumns, then generate each column yourself.Setup the normal columns as type
DataGridViewTextBoxColumn, then for the columns which need to be Linked columns set them up as typeDataGridViewLinkColumn.