is there any grid component which supports right to left layout in visual studio?
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)
DataGridView
has property RightToLeft
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.
There is a RightToLeftLayout property actually, but it is not implemented everywhere, besides:
Unlike RightToLeft, RightToLeftLayout does not inherit. If you want it to take effect for child controls, you must set it on each child control that you want mirrored. (from MSDN)
some details here
For the DataGridView you can use RightToLeft
精彩评论