using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace WindowsFormsApplication2
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
ArrayList list = new ArrayList();
list.Add(new Student("Tom", "荆州", 18));
list.Add(new Student("san", "天门", 18));
list.Add(new Student("ann", "仙桃", 18));
list.Add(new Student("jack", "公安", 18));
foreach (Student stu in list)
{
ListViewItem item = new ListViewItem(stu.Name);
item.SubItems.Add(stu.Address);
item.SubItems.Add(stu.Age.ToString());
listView1.Items.Add(item);
}
}
}
class Student
{
public Student()
{