View.cs 153 B

1234567891011
  1. namespace System.Windows.Forms
  2. {
  3. public enum View
  4. {
  5. LargeIcon,
  6. Details,
  7. SmallIcon,
  8. List,
  9. Tile
  10. }
  11. }