DataGridViewComboBoxColumn вместо ComboBox отображает текст «DataGridViewComboBoxColumn {Name = NewBox, Index = -1}» - PullRequest
1 голос
/ 08 января 2020

Я делаю простое приложение форм windows, которое импортирует заголовки из файла CSV в DataGridView, а затем добавляет строку со списком для каждого столбца. ComboBox содержит только строковые литералы, но когда я запускаю программу и загружаю CSV, я получаю DataGridViewComboBoxColumn { Name=NewBox, Index=-1 }.

Вот код:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;

namespace DataGridTest3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        public void button1_Click(object sender, EventArgs e)
        {
            openFileDialog1.ShowDialog();
            textBox1.Text = openFileDialog1.FileName;

            DataTable table = new DataTable();

            string[] lines = System.IO.File.ReadAllLines(textBox1.Text);
            string firstline = lines[0];
            string[] headerLabels = firstline.Split(',');
            foreach (string headerWord in headerLabels)
            {
                table.Columns.Add(new DataColumn(headerWord));
            }

            int columncount = table.Columns.Count;
            DataGridViewComboBoxColumn dgv = new DataGridViewComboBoxColumn();
            dgv.ReadOnly = false;

            dgv.Name = "NewBox";
            dgv.Items.Add("YES");
            dgv.Items.Add("NO");

            int[] columnnums = new int[columncount];

            DataRow newRow = table.NewRow();

            table.Rows.Add(newRow);

            for (int i = 0; i < columncount; i++)
            {
                newRow[i] = dgv;
            }

            dataGridView1.DataSource = table;
        }
    }
}

Здесь это скриншот вывода:

DGV Output

1 Ответ

0 голосов
/ 08 января 2020

Попробуйте так:

public void button1_Click(object sender, EventArgs e)
{
    openFileDialog1.ShowDialog();
    textBox1.Text = openFileDialog1.FileName;
    DataTable table = new DataTable();

    string[] lines = System.IO.File.ReadAllLines(textBox1.Text);
    string firstline = lines[0];
    string[] headerLabels = firstline.Split(',');
    foreach (string headerWord in headerLabels)
    {
        table.Columns.Add(new DataColumn(headerWord));
    }

    dataGridView1.DataSource = table;

    DataGridViewComboBoxColumn dgv = new DataGridViewComboBoxColumn
    {
        ReadOnly = false,
        Name = "NewBox"
    };

    dgv.DataSource = new string[] { "YES", "NO" };
    dataGridView1.Columns.Add(dgv);
}

Обновление:

public void button1_Click(object sender, EventArgs e)
{
    openFileDialog1.ShowDialog();
    textBox1.Text = openFileDialog1.FileName;

    string[] lines = System.IO.File.ReadAllLines(textBox1.Text);
    string firstline = lines[0];
    string[] headerLabels = firstline.Split(',');
    foreach (string headerWord in headerLabels)
    {
        DataGridViewComboBoxColumn dgv = new DataGridViewComboBoxColumn
        {
            ReadOnly = false,
            Name = headerWord,
            DataSource = new string[] { "YES", "NO" }
        };

        dataGridView1.Columns.Add(dgv);
    }
}
...