NumericUpDownのすべてのコントロールに(DotNetBarからの)スーパーツールチップを表示させます。しかし、必要なのはNumericUpDownのTextBoxのスーパーツールチップだけです。これが私の現在のコードです:
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)
では、テキストボックスにのみツールチップを設定するにはどうすればよいですか?