• 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 tableColor; }
                set { tableColor = value; }
            }

            #endregion


            #region Table事件

            #endregion

            #region Table方法

            public Table()
            {

            }

            public Table(int row, int couumn,Color color)
            {
                rows = row;
                columns = couumn;
                tableColor = color;
            }

            /// <summary>
            /// 初始化
            /// </summary>
            public void initTable() {

                Border border = new Border();
                border.BorderBrush = new SolidColorBrush(Colors.Black);
                border.BorderThickness = new Thickness(2);
                Grid grid = new Grid();

                for (int i = 0; i < rows; i++)
                {
                    grid.RowDefinitions.Insert(i, new RowDefinition() { Height = new GridLength(1,GridUnitType.Star) });
                }
                for (int j = 0; j < columns; j++)
                {
                    grid.ColumnDefinitions.Insert(j, new ColumnDefinition() { Width = new GridLength(1,GridUnitType.Star) });
                }

                //添加矩阵到单元格中
                for (int r = 0; r < rows; r++)
                {
                    for (int c = 0; c < columns; c++) {
                        Rectangle rec1 = getRectangle();
                        rec1.SetValue(Grid.RowProperty, r);
                        rec1.SetValue(Grid.ColumnProperty, c);
                        grid.Children.Add(rec1);
                    }
                }
                border.Child = grid;
                this.Children.Add(border);
            }

            Rectangle getRectangle()
            {
                Rectangle rectangle = new Rectangle
                {
                    HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch,
                    VerticalAlignment = System.Windows.VerticalAlignment.Stretch,
                    Margin = new Thickness(0, 0, 0, 0),
                    Stroke = new SolidColorBrush(Colors.Black),
                };

                return rectangle;
            }

            Rectangle getRectangle(int r,int c,Color color)
            {
                Rectangle rectangle = new Rectangle
                {
                    HorizontalAlignment = System.Windows.HorizontalAlignment.Stretch,
                    VerticalAlignment = System.Windows.VerticalAlignment.Stretch,
                    Margin = new Thickness(0, 0, 0, 0),
                    Stroke = new SolidColorBrush(color),
                };

                return rectangle;
            }

            #endregion
           
        }

    使用方法

    Table table = new Table();
                    table.Rows = int.Parse(tbRow.Text.Trim());
                    table.Columns = int.Parse(tbColumn.Text.Trim());
                    table.initTable();
                    gridContent.Children.Add(table);

  • 相关阅读:
    centos 7.0.1406 临时环境jenkins安装
    jenkins 登录提示无效
    ubuntu 16.04 安装完QQ后,更新或apt-get报错
    Web服务网站故障分析常用的命令
    在CentOS7中给docker加权限
    aliyun阿里云Maven仓库地址和其他地址
    python 安装 docker-copmose
    mysql 1055错误
    linux 添加用户
    firewall 开启服务
  • 原文地址:https://www.cnblogs.com/luxiaofeng54/p/1924175.html
Copyright © 2020-2023  润新知