| 12345678910111213141516171819202122232425262728293031 |
-
- using System;
- namespace Dongke.WinForm.Controls.InvoiceLayout
- {
- /// <summary>
- ///
- /// </summary>
- [Serializable]
- public class RectangleItem : GraphicsItem
- {
- #region 构造函数
- /// <summary>
- /// 构造函数
- /// </summary>
- internal RectangleItem()
- : this(null)
- {
- }
- /// <summary>
- /// 构造函数
- /// </summary>
- /// <param name="box">Layoutbox</param>
- internal RectangleItem(LayoutBox box)
- : base(box, ItemType.Rectangle)
- {
- }
- #endregion 构造函数
- }
- }
|