I confirm that this is an issue with our RadTrackBar element and I have logged it in our FeedBack Portal. You can track the item for status changes and add your vote for it here.
You could workaround the issue by setting the StretchHorizontally property of your RadTrackBar element to false. You would also need to apply a margin and adjust its position in the DropDownButton element. Please see my code below:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
RadTrackBarElement trackBar = new RadTrackBarElement();
trackBar.StretchHorizontally = false;
RadMenuItem menuItemTrackBar = new RadMenuItem();
menuItemTrackBar.Margin = new Padding(0, 0, -25, 0);
I hope this information helps. Should you have further questions please do not hesitate to write back.
Regards,
Hristo
Telerik
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.