How to detect if WinForms Panel has scrolled to the end?
问题 I am developing a WinForms application in which there is a panel which contains some user-controls. When the panel loads for the first time it shows 10 user controls. But when it is scrolled down completely it should load and append more user controls at the end of the panel. I am trying to achieve this using this code: private void topicContainer_Scroll(object sender, ScrollEventArgs e) { if (e.NewValue== topicContainer.VerticalScroll.Value) MessageBox.Show("Topics load here"); } Its just a