/*******************************************************************************
* Copyright(c) 2012 dongke All rights reserved. / Confidential
* 类的信息:
* 1.程序名称:EllipseItem.cs
* 2.功能描述:椭圆Item
* 编辑履历:
* 作者 日期 版本 修改内容
* 欧阳涛 2012/09/14 1.00 新建
*******************************************************************************/
using System;
namespace Dongke.WinForm.Controls.InvoiceLayout
{
[Serializable]
public class EllipseItem : GraphicsItem
{
#region 构造函数
/////
///// 构造函数
/////
//internal EllipseItem()
// : this(null)
//{
//}
///
/// 构造函数
///
/// Layoutbox
/// item类别
internal EllipseItem(/*LayoutBox box*/)
: base(/*box, */ItemType.Ellipse)
{
}
#endregion 构造函数
}
}