Пример #1
0
        private void frmTableProcessor_Load(object sender, EventArgs e)
        {
            var processor = new TableProcessor(Path.Combine(Application.StartupPath, "TableFiles"));

            var tableResult = processor.RunDemo();



            //for (int i = 0; i < tableColumns.Count; i++)
            //{
            //    dataGridView1.Columns.Add(i.ToString(), i.ToString());
            //}

            //dataGridView1.Rows.Add(tableColumns.First());

            var twoD   = tableResult.Table;
            int height = twoD.GetLength(0);
            int width  = twoD.GetLength(1);

            this.dataGridView1.ColumnCount = width;

            for (int r = 0; r < height; r++)
            {
                DataGridViewRow row = new DataGridViewRow();
                row.CreateCells(this.dataGridView1);

                for (int c = 0; c < width; c++)
                {
                    row.Cells[c].Value = twoD[r, c];
                }

                this.dataGridView1.Rows.Add(row);
            }


            //    dataGridView1.DataSource = tableArray;
        }