PropertyValueUIHandler.cs 423 B

12345678910111213141516171819
  1. // System.Drawing.Design.PropertyValueUIHandler.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Collections;
  9. using System.ComponentModel;
  10. using System.Drawing;
  11. namespace System.Drawing.Design
  12. {
  13. [Serializable]
  14. public delegate void PropertyValueUIHandler (ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueUIItemList);
  15. }