下面首先是默认显示图片和代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form10 : Form
{
public Form10()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string[] str = new string[] { "one", "two", "three" };
this.dataGridView1.DataSource = str;
}
}
}
我们需要包装一下数组,方法如下:using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form10 : Form
{
public Form10()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string[] str = new string[] { "one", "two", "three" };
this.dataGridView1.DataSource = str;
}
}
}
图片预览
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form10 : Form
{
public Form10()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Item[] items = new Item[] { new Item("one"), new Item("two"), new Item("three") };
this.dataGridView1.DataSource = items;
}
}
class Item
{
private string _text;
public string Text
{
get { return _text; }
}
public Item(string text)
{
this._text = text;
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form10 : Form
{
public Form10()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Item[] items = new Item[] { new Item("one"), new Item("two"), new Item("three") };
this.dataGridView1.DataSource = items;
}
}
class Item
{
private string _text;
public string Text
{
get { return _text; }
}
public Item(string text)
{
this._text = text;
}
}
}