LongoMatch.GtkGlue.SetLinkHandler C# (CSharp) Method

SetLinkHandler() public static method

Sets the link handler for a given GtkLabel.
public static SetLinkHandler ( this label, Action urlHandler ) : void
label this GtkLabel to set the handler for.
urlHandler Action URL handler.
return void
		public static void SetLinkHandler (this Label label, Action<string> urlHandler)
		{
			new UrlHandlerClosure (urlHandler).ConnectTo (label);
		}