New to Telerik UI for WinForms? Download free 30-day trial

Right-to-Left support

RadWizard also supports RightToLeft alignment of its elements:

WinForms RadWizard RightToLeft Support

You can enable the right-to-left functionality, by setting the RightToLeft property to True:

Setting Right-to-Left mode

this.radWizard1.RightToLeft = RightToLeft.Yes;
this.radLabel1.RightToLeft = RightToLeft.Yes;
this.radLabel1.Text = "Welcome page of RadWizard in RightToLeft mode.";

RadWizard1.RightToLeft = System.Windows.Forms.RightToLeft.Yes
RadLabel1.RightToLeft = System.Windows.Forms.RightToLeft.Yes
RadLabel1.Text = "Welcome page of RadWizard in RightToLeft mode."

See Also

In this article