RTL in Windows Forms Popup (PopupControlContainer)

4 Feb 20251 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.popupControlContainer1.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
Me.popupControlContainer1.RightToLeft = System.Windows.Forms.RightToLeft.Yes

right-to-left