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:
private void nnud_Enter(object sender, EventArgs e){
// The ToolTip Text to display is held by each NNumericUpDown's Tag property:int length = ((Nevron.UI.WinForm.Controls.NNumericUpDown)sender).Text.Length;((Nevron.UI.WinForm.Controls.
NNumericUpDown)sender).Select(0, length);nttFixturesToolTipForNNUDs.Content.Text = ((Nevron.UI.WinForm.Controls.
NNumericUpDown)sender).Tag.ToString();nttFixturesToolTipForNNUDs.SetTooltip(((Nevron.UI.WinForm.Controls.
NNumericUpDown)sender));nttFixturesToolTipForNNUDs.ShowDelay = 10;
nttFixturesToolTipForNNUDs.HideDelay = 1000;
}
private void nnudFixtures_MouseClick(object sender, MouseEventArgs e){
EventArgs a = new EventArgs();nnud_Enter(sender, a);
}
Thanks,
-Miles