Hyperlink Control
BCGControlBar Pro (MFC)
BCGSuite (MFC)
BCGControlBar for .NET
The hyperlink control is derived from the push button and looks like the underlined flat text with a special color and mouse hand cursor. You can either catch the mouse click event or utilize the default shell action (determined by the URL prefix). You can set the text link, hover and "visited" colors, or turn on and off the text underlining.
Sample code:
CBCGPURLLinkButton m_btnMail;
...
m_btnMail.SetURLPrefix (_T("mailto:"));
m_btnMail.SetURL (_T("info@bcgsoft.com"));
m_btnMail.SizeToContent ();
m_btnMail.SetTooltip (_T("Send mail to author"));