Visual Studio中有没有支持从右到左布局的网格组件?
我想知道是否有像 devextra 网格(或像 delphi 中的 tadvancedgrid)这样完全支持从右到左布局的网格
我想要一些数据网格,我可以在它上面设置比 dataGridView 更多的属性
来设置每列的皮肤、数据格式, 的背景图像
数据导航工具,网格列分组工具
过滤工具,打印工具,.... (比DataGridView更灵活的东西)
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)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
DataGridView
具有属性RightToLeft
Windows 窗体中的几乎每个标准控件都支持
从右到左
。不确定您想要实现什么,但在表单中设置
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.是的,
DataGridView
控件< /a> 是最常用的一种。更详细的信息可在此中找到博客文章。
Yes, the
DataGridView
control is the one most commonly used.More detailed information is available in this blog article.
实际上有一个 RightToLeftLayout 属性,但它并没有在所有地方实现,此外:
此处
对于 DataGridView,您可以使用 RightToLeft
There is a RightToLeftLayout property actually, but it is not implemented everywhere, besides:
some details here
For the DataGridView you can use RightToLeft