we have an information tool that displays information from active directory on a gui. I want to extend that tool to the part that i can click on a text to open a file. I am struggeling with the function to do the text clickable.
The tool was made in Windows Forms and VB.net.
My code to create a category in a propertygrid is:
<Description(""),
Category("UserHistory Log"), [ReadOnly](True), Browsable(True), DisplayName("Computerlog")>
Public ReadOnly Property ComputerLog() As String
Get
Return "press here"
End Get
End Property
Its like this:

How can i make it clickable? Do you have any clue?
I read about linklabels. But i am not sure how to implement a linklabel into a propertygrid without drag&drop because the form itself is clear.

There's no built in support for showing a link in the property editor; in addition to the text, you can show an icon, a custom glyph, a dropdown button or a dots button.
You can also handle the click event of grid entries.
Handling the click might be good enough for you. But if you would like to show a link label in the property grid, the following code shows you a nice hack (read dirty hack ), so that when you click on the property it shows the link label:
And this is the test class:
To use the code, make sure you bind the event handler to the event.