CheckedListBoxControl.DesignExt.cs 784 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Windows.Forms;
  5. using System.Drawing;
  6. using System.ComponentModel;
  7. using FastReport.Utils;
  8. using FastReport.Data;
  9. namespace FastReport.Dialog
  10. {
  11. partial class CheckedListBoxControl
  12. {
  13. #region Properties
  14. /// <summary>
  15. /// This property is not relevant to this class.
  16. /// </summary>
  17. [Browsable(false)]
  18. public override DrawMode DrawMode
  19. {
  20. get { return base.DrawMode; }
  21. set { base.DrawMode = value; }
  22. }
  23. /// <summary>
  24. /// This property is not relevant to this class.
  25. /// </summary>
  26. [Browsable(false)]
  27. public override int ItemHeight
  28. {
  29. get { return base.ItemHeight; }
  30. set { base.ItemHeight = value; }
  31. }
  32. #endregion
  33. }
  34. }