I want to use tooltips in my windows forms application. So i created a simple method like this:
public void MyTooltips(Control c, string m, bool b)
{
ToolTip t = new ToolTip();
t.IsBalloon = b;
t.SetToolTip(c, m);
t.BackColor = Color.Crimson;
t.ForeColor = Color.White;
}
And i am using it like this: MyTooltips(combobox1, "If anything, select zero.", true);
In the usage, tooltip back and fore colors are not changing. Tooltips shown as Windows 7 default tooltip back and fore colors. How can i do this?
Kind regards.
HTML Renderer can do this. For example: