AD
Administrator
Syncfusion Team
September 8, 2003 05:48 PM UTC
Hi Tim,
This is an issue concerning the .NET framework. The order of the child pages is not the same as it is seen in the designer. The framework brings the most frequently used pages to the front and viceversa.
Adding the wizard pages programmatically to the Wizard Container in the desired order is the only way of ensuring that the initial order of pages is maintained. The code would look something like this :
this.wizardContainer1.Controls.AddRange(new System.Windows.Forms.Control[]
{
this.wizardControlPage1,
this.wizardControlPage2,
this.wizardControlPage3
});
However, we have considered your suggestion to control ordering of wizardcontrol pages in the designer, and have logged it in as a 'feature request' (QA# 276). We will do our best to implement this at the earliest and include this feature in our future releases. Thanks for your patience.
Regards,
Guru Patwal.