The HTML Renderer suppors three kinds of links:
- URI paths: Any path that the
URI
class can parse. Your internet browser will be activated.- File paths: Any other path, It will be started as if you typed it on the Run Windows dialog.
- Code paths: Will trigger the specified
static method
.Note on code paths: Methods need to return void, take no arguments and be declared as static.
Examples
URI Example
This is a URI link to my donations page. (Come on!)
href="http://www.menendezpoo.com/donations.php"
Take a look to the source of this document and the souce of Bridge.cs to see how the connection is done.