DrawMode.cs 141 B

123456789
  1. namespace System.Windows.Forms
  2. {
  3. public enum DrawMode
  4. {
  5. Normal,
  6. OwnerDrawFixed,
  7. OwnerDrawVariable
  8. }
  9. }