Visual Studio中有没有支持从右到左布局的网格组件?

发布于 2024-11-09 04:34:02 字数 215 浏览 0 评论 0原文

我想知道是否有像 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

将军与妓 2024-11-16 04:34:02

DataGridView 具有属性 RightToLeft

Windows 窗体中的几乎每个标准控件都支持 从右到左

不确定您想要实现什么,但在表单中设置 RightToLeft 可能更有意义。它将自动传播到子控件,而不是为每个控件设置此属性。

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.

夢归不見 2024-11-16 04:34:02

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

More detailed information is available in this blog article.

娜些时光,永不杰束 2024-11-16 04:34:02

实际上有一个 RightToLeftLayout 属性,但它并没有在所有地方实现,此外:

与 RightToLeft 不同,RightToLeftLayout
不继承。如果你想要它
对子控件生效,你
必须在每个子控件上设置它
你想要镜像。 (来自 MSDN)

此处

对于 DataGridView,您可以使用 RightToLeft

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文