I’m looking for a way to use hyperlinks in a winforms environment.
I found that it uses System.Web.UI.WebControls; but when i tried to use it in my program System.Web was as far as it would go.
So I checked the refrences but also no System.Web.UI.WebControls or something like that,
any sugestions?
If your’re developing a WinForms application you have to use
System.Windows.Forms.LinkLabelcontrol, located inSystem.Windows.Formsassembly. Controls inSystem.Web.*are for HTML pages.