DraggableListOptions.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Drawing;
  6. namespace Bowin.Web.Controls.Mvc
  7. {
  8. public class DraggableListControlOptions : DraggableListOptions
  9. {
  10. public string ID { get; set; }
  11. public string Name { get; set; }
  12. public int? Width { get; set; }
  13. public int? Height { get; set; }
  14. public Color ForeColor { get; set; }
  15. }
  16. public class DraggableListDropOptions
  17. {
  18. public List<DraggableItemPosition> ItemList { get; set; }
  19. public string ItemSourceUrl { get; set; }
  20. public int ItemHeight { get; set; }
  21. public string TitleField { get; set; }
  22. public string ValueField { get; set; }
  23. public string IconField { get; set; }
  24. public string LeftField { get; set; }
  25. public string TopField { get; set; }
  26. }
  27. public class DraggableListOptions
  28. {
  29. public List<DraggableItem> ItemList { get; set; }
  30. public string ItemSourceUrl { get; set; }
  31. public int ItemHeight { get; set; }
  32. public string TitleField { get; set; }
  33. public string ValueField { get; set; }
  34. public string IconField { get; set; }
  35. }
  36. }