C# UserControl.VerticalScroll.Value not being set
I've got a chunk of C# code that is supposed to set VerticalScroll.Value within a class that inherits from UserControl. It gets called when any child object of the class changes sizes. The class has its AutoScroll property set to true. public void ScrollTo(int top) { if (top >= this.VerticalScroll.Minimum && top <= thi...