RefreshProperties.cs 256 B

123456789101112131415161718
  1. //
  2. // System.ComponentModel.RefreshProperties.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.ComponentModel
  10. {
  11. [Serializable]
  12. public enum RefreshProperties {
  13. All,
  14. None,
  15. Repaint
  16. }
  17. }