QQListOptions.cs 1001 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Bowin.Web.Controls.Mvc
  6. {
  7. public class QQListOptions : BaseControlOptions
  8. {
  9. public QQListOptions()
  10. {
  11. ItemList = new List<ListControlItem>();
  12. ColumnCount = 1;
  13. }
  14. public int ColumnCount { get; set; }
  15. public int? Width { get; set; }
  16. public int? ItemWidth { get; set; }
  17. public int? ItemHeight { get; set; }
  18. public List<ListControlItem> ItemList
  19. {
  20. get;
  21. set;
  22. }
  23. public string ItemSourceUrl { get; set; }
  24. public string TextField
  25. {
  26. get;
  27. set;
  28. }
  29. public string ValueField
  30. {
  31. get;
  32. set;
  33. }
  34. public string OnClick
  35. {
  36. get;
  37. set;
  38. }
  39. public string OnLoadSuccess
  40. {
  41. get;
  42. set;
  43. }
  44. }
  45. }