ImageLayout.cs 152 B

1234567891011
  1. namespace System.Windows.Forms
  2. {
  3. public enum ImageLayout
  4. {
  5. None,
  6. Tile,
  7. Center,
  8. Stretch,
  9. Zoom
  10. }
  11. }