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?
Asked
Active
Viewed 444 times
1 Answers
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