I let a supertooltip (from DotNetBar) appear on every control of NumericUpDown. But I only need a supertooltip on the TextBox of NumericUpDown. Here is my current code:

foreach (Control c in NumericUpDown.Controls)
{
    NumericUpDownToolTip.SetSuperTooltip(c, NumericUpDownSuperToolTip);
}

//Declarations:
//NumericUpDownToolTip is a SuperToolTip from DotNetBar
//NumericUpDownSuperToolTip is the configuration of the SuperToolTip (for example: the text of the tooltip)

So how do I set the tooltip only on the textbox?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Modify your foreach to be this:

foreach (Control c in NumericUpDown.Controls.OfType<TextBox>())
link|improve this answer
Thanks! Short code, easy and works like a charm. – HitomiKun Sep 15 '11 at 19:22
feedback

You could do it the old fashioned way:

foreach (Control c in NumericUpDown.Controls)
{
    if (!(c is TextBox)) continue;
    NumericUpDownToolTip.SetSuperTooltip(c, NumericUpDownSuperToolTip);
}

Or use LINQ to accomplish the same

var controls = NumericUpDown.Controls.Where(c => c is TextBox);

foreach (Control c in controls)
   NumericUpDownToolTip.SetSuperTooltip(c, NumericUpDownSuperToolTip);
link|improve this answer
Thank you for your fast answer and good explanation! But I prefer the shorter code. – HitomiKun Sep 15 '11 at 19:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.