Silverlight 自定义表格
摘要:
功能很简单,用于备忘public class Table:Grid { #region Table属性 private int rows; private int columns; private Color tableColor; public int Rows { get { return rows; } set { rows = value; } } public int Columns { get { return columns; } set { columns = value; } } public Color TableColor { get { return tableColo 阅读全文
posted @ 2011-01-02 17:52 陆晓峰 阅读(2639) 评论(0) 推荐(0)