Hi Miles,
You should separately attach to the following events:
nNumericUpDown1.Controls[0].MouseEnter +=
nNumericUpDown1.Controls[1].MouseEnter +=
... and in the event handlres to set to tooltip to the respective controls.
Regards,
Angel.
I have a need to have my NNumericUpDown controls display a ToolTip specific to each one of them; but there is apparently no MouseHover Event... Am I missing something or is the functionality just not available?
I tried hooking up the NToolTip to the MouseClick, OnEnter Events - but, that doesn't seem to work:
{
((Nevron.UI.WinForm.Controls.
nttFixturesToolTipForNNUDs.Content.Text = ((Nevron.UI.WinForm.Controls.
nttFixturesToolTipForNNUDs.SetTooltip(((Nevron.UI.WinForm.Controls.
nttFixturesToolTipForNNUDs.ShowDelay = 10;
nttFixturesToolTipForNNUDs.HideDelay = 1000;
}
nnud_Enter(sender, a);
-Miles