What I can suggest is to get the TrackBarThumbElement and use its PointToScreen() method which will return the position of the element on your monitor.
privatevoidradButton1_Click(object sender, EventArgs e)
{
foreach (TrackBarIndicatorElement item inthis.radTrackBar1.TrackBarElement.BodyElement.IndicatorContainerElement.Children)
{
foreach ( var thumbIndicator in item.Children)
{
if (thumbIndicator is TrackBarThumbElement)
{
var position = thumbIndicator.PointToScreen(Point.Empty);
Console.WriteLine(position.ToString());
}
}
}
}
You can also check the attached project. Can you check it out and let me know if I am in the right direction?
Regards,
Dinko | Tech Support Engineer
Progress Telerik