I have a Bitmap image that displays a ToolTip. The image is the handle for a custom built slider control. The purpose of the tooltip is to display the exact number that the slider handle is currently positioned on.
Im looking for a way to make the tooltip "follow" the mouse. The following attributes have been set:
ToolTipService.BetweenShowDelay="0"
ToolTipService.InitialShowDelay="0"
So the tooltip appears instantly, but as soon as the mouse is clicked (to initiate the "drag" event) the tooltip disappears. It doesnt reappear until the mouse button has been released and the handle is stationary.
My searching turned up results on how to do it on the WPF Slider control, is there any way to make the ToolTipService itself have the same behavior?