Ejemplo n.º 1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="part">thead/tbody/tfoot</param>
 /// <param name="index">行</param>
 /// <param name="cssClass">css类</param>
 internal TRow(TPart part, int index, string cssClass)
 {
     Part  = part;
     Cells = new List <TCell>();
     Index = index;
     Class = cssClass;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public Table()
 {
     Thead = new TPart(this);
     Tbody = new TPart(this);
     Tfoot = new TPart(this);
 }