IPropertyValueUIService.cs 728 B

12345678910111213141516171819202122232425262728293031
  1. // System.Drawing.Design.IPropertyValueUIService.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta <[email protected]>
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Drawing;
  9. using System.ComponentModel;
  10. namespace System.Drawing.Design
  11. {
  12. public interface IPropertyValueUIService
  13. {
  14. #region Methods
  15. void AddPropertyValueUIHandler (PropertyValueUIHandler newHandler);
  16. PropertyValueUIItem[] GetPropertyUIValueItems (ITypeDescriptorContext context, PropertyDescriptor propDesc);
  17. void NotifyPropertyValueUIItemsChanged ();
  18. void RemovePropertyValueUIHandler (PropertyValueUIHandler newHandler);
  19. #endregion Methods
  20. #region Events
  21. event EventHandler PropertyUIValueItemsChanged;
  22. #endregion Events
  23. }
  24. }