1

I want to load data to my Devexpress Xtragrid when scrolling is down on winform project. I searched everywhere but I didn't find anything. I don't want to use XPO and server mode. Can anybody help to me?

Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
ozziee
  • 21
  • 2

1 Answers1

0

See this DevExpress Answer.

DevExpress.XtraEditors.VScrollBar bar;
        foreach(Control ctrl in gridControl1.Controls)
            if (ctrl is DevExpress.XtraEditors.VScrollBar)  {
                bar = ctrl as DevExpress.XtraEditors.VScrollBar;
                bar.ValueChanged += new OnValueChanged;
                break;
            }

And according this Smooth Scroll thread, DevExpress hasn't implemented this functionality in their XtraGrid.

Faizan Mubasher
  • 4,427
  • 11
  • 45
  • 81