PictureBoxSizeMode.cs 255 B

12345678910111213141516171819
  1. //
  2. // System.Windows.Forms.PictureBox
  3. //
  4. // Author:
  5. // Joel Basson ([email protected])
  6. //
  7. //
  8. using System.Drawing;
  9. namespace System.Windows.Forms {
  10. public enum PictureBoxSizeMode {
  11. AutoSize, CenterImage, Normal, StretchImage
  12. }
  13. }