RTL in Windows Forms xp toolbar (XPToolbar)

12 Mar 20241 minute to read

RTL is used to display the content from right to left by setting the RightToLeft property to Yes.

The following code sample explains how to display the control from right-to-left.

this.xpToolBar1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
Me.xpToolBar1.RightToLeft = System.Windows.Forms.RightToLeft.Yes

right-to-left