UltraFormattedLinkLabel Control.
The Infragistics UltraFormattedLinkLabel control offers all the features as the
Windows LinkLabel control and more. Writing formatted text values with inserted
hyperlinks is easier thanks to the Edit Formatted Text dialog.

The control can render html like format with auto detection of Url's.
Values
can be edited as formatted text and or raw text. The LinkClicked event will start
the default process automatically which can be overridden.
Namespace: Infragistics.Win.FormattedLinkLabel
Assembly:
using Infragistics.Win.FormattedLinkLabel;
Calling: Infragistics.Win.FormattedLinkLabel.UltraFormattedLinkLabel
Creating a new Infragistics.Win.FormattedLinkLabel.UltraFormattedLinkLabel control.
Infragistics.Win.FormattedLinkLabel.UltraFormattedLinkLabel ultraFormattedLinkLabel1
= new Infragistics.Win.FormattedLinkLabel.UltraFormattedLinkLabel();
Adding the UltraFormattedLinkLabel control to a Windows form.
this.Controls.Add(ultraFormattedLinkLabel1);
Assigning text value to the UltraFormattedLinkLabel control.
ultraFormattedLinkLabel1.Value = "DotNet Controls";
Using an image with the UltraFormattedLinkLabel control.
ultraFormattedLinkLabel1.Appearance.Image = Image.FromFile(@"c:\Icons\helloworld.gif");
|