I have a uvSelfLoadingTextBox
with multiple instances in a form. I would like to load a tooltip with the _value
property at runtime.
I tried
public ucSelfLoadingTextBox() { Windows.Forms.ToolTip myToolTip; myToolTip.AutomaticDelay = 5000; myToolTip.AutoPopDelay = 50000; myToolTip.InitialDelay = 100; myToolTip.ReshowDelay = 500; myToolTip.SetToolTip(this, _value);
inside the control, but this does not work.
I tried using a tooltip that is being dragged into the form
ucSelfLoadingLogicTextBox uc = new ucSelfLoadingLogicTextBox(); toolTipA.SetToolTip(uc,uc._value );
and it wonβt work.
What is the right way to do this?
source share