【发布时间】:2013-05-06 13:45:03
【问题描述】:
我在 Win Form 中使用 C#。
我使用 DotNetBar 的 DataGridView (DataGridViewX) 并将 RightToLeft 模式更改为 Yes。
但 DataGridViewX 的水平滚动条从左侧开始,而必须从右侧开始。
看下图来解决我的问题:
如何解决问题?
【问题讨论】:
标签: c# datagridview right-to-left dotnetbar
我在 Win Form 中使用 C#。
我使用 DotNetBar 的 DataGridView (DataGridViewX) 并将 RightToLeft 模式更改为 Yes。
但 DataGridViewX 的水平滚动条从左侧开始,而必须从右侧开始。
看下图来解决我的问题:
如何解决问题?
【问题讨论】:
标签: c# datagridview right-to-left dotnetbar
试试这个DataGridViewX.CurrentCell = DataGridViewX[0, DataGridViewX.Rows.Count - 1];
【讨论】: