I have implemented a custom property grid, I want to know if I can change the label position of each property from left to right.
My custom property grid shows a property, as you can see in the picture.

I want to change it like this:

This is the main custom property grid code.
public class CustomPropertyGrid : PropertyGrid { private System.ComponentModel.Container components = null; private ReperesentAttr representAttr; private myTab tab; public CustomPropertyGrid() { this.representAttr = new ReperesentAttr("", ""); tab.SetRepresentAttr = this.representAttr; InitializeComponent(); this.PropertySort = PropertySort.Alphabetical; this.RightToLeft = RightToLeft.Yes;
source share