Same as in the title is there a way to check if user scrolled up/down? This is how i check but its not working
Scroll += new ScrollEventHandler(Form_Scroll);
void Form_Scroll(object sender, ScrollEventArgs e){MessageBox.Show("Scrolled");}
But when i scroll i do not get the message.