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);
하지만 추가할 수 있었다.
Reference
이 문제에 관하여(Visual Studio/Windows Forms Application > DataGridView > XE4:TStringGrid에 해당하는/csv 문자열 할당: .split() 사용), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/ea8a3f3bca45b22d33c1텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)