VScrollBar.cs 211 B

12345678910
  1. namespace System.Windows.Forms
  2. {
  3. public class VScrollBar : ScrollBar
  4. {
  5. public VScrollBar()
  6. {
  7. control.Orientation = Windows.Controls.Orientation.Vertical;
  8. }
  9. }
  10. }