RTL in WinForms Context Menu Strip

18 Nov 20181 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.contextMenuStripEx.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
Me.contextMenuStripEx.RightToLeft = System.Windows.Forms.RightToLeft.Yes

right-to-left