2

I Work With C# in Win Form.

I use DotNetBar's DataGridView (DataGridViewX) And Change RightToLeft Mode To Yes.

But Horizontal Scroll Bar for DataGridViewX Started from Left Side While Must Start from Right Side.

Look at Under Picture to Get My Problem:

enter image description here

How Solve Problem?

Mahdi Radi
  • 429
  • 2
  • 10
  • 30

1 Answers1

0

Try this
DataGridViewX.CurrentCell = DataGridViewX[0, DataGridViewX.Rows.Count - 1];

HamzaFarooq
  • 429
  • 1
  • 4
  • 16