I'm trying to dynamically create a link from a Windows Form to our website when certain conditions are met (it's a warning message with further information in our online manual).
Currently I'm finding LinkLabel quite unwieldy to use in this situation: having to set up LinkClicked handlers on the fly for a straightforward hyperlink seems inelegant.
Is there a wrapper or alternative that fulfills the following requirements?:
- Inherits from System.Windows.Forms.Control (so I can use it in a TableLayoutPanel)
- Has reasonably low setup (no strange LinkClicked function pre-visit checking, for example)
- Isn't bound to a specific browser