I selected "None" for the ScrollBars property, but this prevents me from scrolling with the mouse. I would like to either remove the scrollbars or hide them while keeping the mouse scroll. Is it possible?
I decided (I canβt answer at 8 oβclock ...)
Sign up for the MouseWheel event and in the function ...
if(e.Delta > 0 && DGV.FirstDisplayedScrollingIndex > 0) { DGV.FirstDisplayedScrollingIndex--; } else if(e.Delta < 0) { DGV.FirstDisplayedScrollingIndex++; }
source share