| 12345678910111213141516171819 |
- //
- // System.Windows.Forms.PictureBox
- //
- // Author:
- // Joel Basson ([email protected])
- //
- //
- using System.Drawing;
- namespace System.Windows.Forms {
- public enum PictureBoxSizeMode {
-
- AutoSize, CenterImage, Normal, StretchImage
-
- }
- }
|