How do I change the foreground color of a hyperlinq?
Cannot use
Util.WithSyle (new Hyperlinq(() => {...},"text"),"foreground: gray") // not working Hyperlinq set its own style
new Hyperlinq(() => {...},Util.WithSyle ("text","foreground: gray")) // syntax error 2nd argument to hyperlinq must be a string
Comments
Another option is to use (the more recent) LINQPad.Controls.Hyperlink. This gives you much more control:
Press Ctrl+F1 and search for "LINQPad Controls" for more info.