| 12345678910111213141516171819202122 |
- // System.Drawing.Design.PropertyValueUIHandler
- //
- // Author:
- // Alejandro Sánchez Acosta <[email protected]>
- //
- // (C) Alejandro Sánchez Acosta
- //
- using System.Collections;
- using System.ComponentModel;
- using System.Drawing;
- namespace System.Drawing.Design
- {
-
- [Serializable]
- public delegate void PropertyValueUIHandler (
- ITypeDescriptorContext context,
- PropertyDescriptor propDesc,
- ArrayList valueUIItemList);
- }
|