Hi Rhodri,
Thank you for contacting Syncfusion support.
In RibbonControlAdv, we have arranged the ToolStripEx inside the panel from left to right direction. Therefore, ToolStripEx order cannot be modified by drag and drop the control. As your request is to rearrange the created ToolStripEx, we recommend you to change the ToolStripEx location by modify the order of ToolStripEx which has been added into the panel of ToolStripTabItem in “Form.designer.cs” as like below code.
Code Example[C#]:
//To rearrange the ToolStripEx in different locations
this.toolStripTabItem1.Panel.Controls.Add(toolStripEx4);
this.toolStripTabItem1.Panel.Controls.Add(toolStripEx1);
this.toolStripTabItem1.Panel.Controls.Add(toolStripEx2); |
We have prepared a simple sample in which we have modified the order of ToolStripEx in “Form1.designer.cs” and and it can be downloaded from the below location.
Regards,
Keerthana J