New to Telerik UI for WinForms? Start a free 30-day trial
Right-to-Left support
Updated over 6 months ago
RadWizard also supports RightToLeft alignment of its elements:

You can enable the right-to-left functionality, by setting the RightToLeft property to True:
Setting Right-to-Left mode
C#
this.radWizard1.RightToLeft = RightToLeft.Yes;
this.radLabel1.RightToLeft = RightToLeft.Yes;
this.radLabel1.Text = "Welcome page of RadWizard in RightToLeft mode.";