is there any grid component which supports right to left layout in visual studio?

本秂侑毒 提交于 2019-12-11 18:18:35

问题


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)


回答1:


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.




回答2:


Yes, the DataGridView control is the one most commonly used.

More detailed information is available in this blog article.




回答3:


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



来源:https://stackoverflow.com/questions/6079790/is-there-any-grid-component-which-supports-right-to-left-layout-in-visual-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!