Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The problem comes from the MaintenanceFormToolstrip being a control that has it's own InitializeComponent method... when the designer changes the order of the buttons on the toolstrip, it only changes them on the instance of the toolstrip that is in the designer, but it cannot change them when the form runs. So, you will most likely need to create a method to swap the order of the buttons programmatically when the form instantiates or loads. Or, you can subclass the MaintenanceFormToolstrip to create your own and put the logic to swap the buttons in there. Then, your custom toolstrip will have the correct button order, no matter what form you drop it on.
|