Can I display links in a ListView's detail mode?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
In my windown application, I have a listview, which contains two columns. One of the subitem in a row contains the data as below. "Failed testcase path=C:\temp\test.jpg" I need to provide hyperlink to only "C:\temp\test.jpg". If I click on the same, it should open the corresponding image. I tried by changing the property HotTaracking to true.
listView1.HotTracking = true;
But it shows hyperlinks to all the rows in listview. Is there a way to achieve this?