rtl support
Closed this issue · 1 comments
naji-makhoul commented
davidegironi commented
@naji-makhoul thank you for feedback. This datagrid do not support RightToLeft, if you are going to implement this feature please share with me. Until that you could force the left to right direction of your AdvancedDataGridView instance by setting the RightToLeft property (ex. advancedDataGridView_main.RightToLeft = RightToLeft.No).
I'm going to forced to left to right direction changing the constructor of the AdvancedDataGridView to something like this:
public AdvancedDataGridView()
{
RightToLeft = RightToLeft.No;
}