ToolbarOptions.cs 580 B

12345678910111213141516171819202122232425262728
  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 ToolbarOptions
  8. {
  9. IList<ToolbarButton> buttonList;
  10. public IList<ToolbarButton> ButtonList
  11. {
  12. get
  13. {
  14. if (buttonList == null)
  15. {
  16. buttonList = new List<ToolbarButton>();
  17. }
  18. return this.buttonList;
  19. }
  20. set
  21. {
  22. buttonList = value;
  23. }
  24. }
  25. }
  26. }