DataBindingValueUIHandler.cs 514 B

123456789101112131415161718192021222324252627
  1. //
  2. // System.Web.UI.Design.DataBindingValueUIHandler
  3. //
  4. // Authors:
  5. // Gert Driesen ([email protected])
  6. //
  7. // (C) 2004 Novell
  8. //
  9. using System.Collections;
  10. using System.ComponentModel;
  11. namespace System.Web.UI.Design
  12. {
  13. public class DataBindingValueUIHandler
  14. {
  15. public DataBindingValueUIHandler ()
  16. {
  17. }
  18. [MonoTODO]
  19. public void OnGetUIValueItem (ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueUIItemList)
  20. {
  21. throw new NotImplementedException ();
  22. }
  23. }
  24. }