I was wondering if there is a grid like devextra grid (or like tadvancedgrid in delphi) which supports right to left layout completely
i want some data grid which i can set more properties than dataGridView on it
to set skins , data formats for each column ,data navigation tools , background image for grid
column grouping tools filtering tools , printing tools , ....
(something which has more flexibility than DataGridView)
There is a RightToLeftLayout property actually, but it is not implemented everywhere, besides:
some details here
For the DataGridView you can use RightToLeft
DataGridView
has propertyRightToLeft
Pretty much every standard control in Windows Forms support
RightToLeft
.Not sure what you want to achieve, but it probably makes more sense to set
RightToLeft
in the form. It will be automatically propagated to the child controls, instead of setting this property for every single control.Yes, the
DataGridView
control is the one most commonly used.More detailed information is available in this blog article.