Orientation.cs 115 B

12345678
  1. namespace System.Windows.Forms
  2. {
  3. public enum Orientation
  4. {
  5. Horizontal,
  6. Vertical
  7. }
  8. }