October 25, 2010
Creating Super Tooltips using code only is simple. Use following code: C#: // SuperTooltipInfo type describes Super-Tooltip SuperTooltipInfo superTooltip = new SuperTooltipInfo(); superTooltip.HeaderText = "Header text"; superTooltip.BodyText = "Body text with <strong>text-markup</strong> support. Header and footer support text-markup too."; superTooltip.FooterText = "My footer text"; // Assign tooltip to a control or DotNetBar component superTooltip1.SetSuperTooltip(textBoxX1, […]