RectangleItem.cs 632 B

12345678910111213141516171819202122232425262728293031
  1. 
  2. using System;
  3. namespace Dongke.WinForm.Controls.InvoiceLayout
  4. {
  5. /// <summary>
  6. ///
  7. /// </summary>
  8. [Serializable]
  9. public class RectangleItem : GraphicsItem
  10. {
  11. #region 构造函数
  12. /// <summary>
  13. /// 构造函数
  14. /// </summary>
  15. internal RectangleItem()
  16. : this(null)
  17. {
  18. }
  19. /// <summary>
  20. /// 构造函数
  21. /// </summary>
  22. /// <param name="box">Layoutbox</param>
  23. internal RectangleItem(LayoutBox box)
  24. : base(box, ItemType.Rectangle)
  25. {
  26. }
  27. #endregion 构造函数
  28. }
  29. }