RectangleItem.cs 965 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*******************************************************************************
  2. * Copyright(c) 2012 dongke All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:RectangleItem.cs
  5. * 2.功能描述: 矩形Item
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 欧阳涛 2012/09/14 1.00 新建
  9. *******************************************************************************/
  10. using System;
  11. namespace Dongke.WinForm.Controls.InvoiceLayout
  12. {
  13. [Serializable]
  14. public class RectangleItem : GraphicsItem
  15. {
  16. #region 构造函数
  17. ///// <summary>
  18. ///// 构造函数
  19. ///// </summary>
  20. //internal RectangleItem()
  21. // : this(null)
  22. //{
  23. //}
  24. /// <summary>
  25. /// 构造函数
  26. /// </summary>
  27. /// <param name="box">Layoutbox</param>
  28. /// <param name="itemType">item类别</param>
  29. internal RectangleItem(/*LayoutBox box*/)
  30. : base(/*box, */ItemType.Rectangle)
  31. {
  32. }
  33. #endregion 构造函数
  34. }
  35. }