摘要: using System;using System.Collections.Generic;using System.Text;using System.Drawing;using System.Windows.Forms;using App.Grid.Enum;namespace App.Grid.Interface{ public interface ICells { /// /// 单元格集合(一维数组) /// List _Cells { get; } /// /// 单元格集合(二维数组) /// List> Cells { get; } /// /// 结束编辑 /// .. 阅读全文
posted @ 2013-06-25 13:21 注定likeyou 阅读(404) 评论(0) 推荐(0) 编辑