Visual Studio/Windows Forms Application > DataGridView > XE4:TStringGrid에 해당하는/csv 문자열 할당: .split() 사용

운영 환경
Visual Studio 2017 Community (以下VS)
Windows 7 Pro (32bit)

C++ Builder XE4에서 TStringGrid와 같은 테이블을 만들고 싶습니다.

VS에서는 DataGridView라는 것 같다.
htps : // 여기. msd 응. 미 c 로소 ft. 코 m / undo w ps / undo w w fu rm w w-886 7d03

추가해 보았습니다.


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;

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

        private void button1_Click(object sender, EventArgs e)
        {
            dataGridView1.Rows.Add("data1", "data2", "data3");
        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }
    }
}



csv 문자열 할당



참고 : ぃ tp // 이 m / 7 / f9 / ms / 3514 24입니다 d36 a 1 50
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;

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

        private void button1_Click(object sender, EventArgs e)
        {
            string alist = "data1,data2,data3";
            string[] elem = alist.Split(',');
            dataGridView1.Rows.Add(elem[0], elem[1], elem[2]);
        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }
    }
}

.Rows.Add() 부분에는 개선의 여지는 있다.
dataGridView1.Rows.Add(elem); 하지만 추가할 수 있었다.

좋은 웹페이지 즐겨찾기