ListView控件的应用

ListView 控件应用:

在头文件添加;
using System.Data.sqlClient
1:连接字符串
新建一个DBHelper类//studentDB为数据库名字
using System.Data.sqlClient;
{
private static string connectionString=”Data Source=.;Initial Catalog=studentDB;User ID=sa;”
public static sqlConnection Connection=new sqlConnection(connectionString);
}

2:splCommand 事件
在头文件添加;
using System.Data.sqlClient
在load事件中,添加程序
int id=0’,,studentNum=0;
string usertName=”“,name=”“state=”“;
string spl=”select*from student”;
SqlCommand cmd=new SqlCommand(spl,DBHelper.connection);
//打开数据库链接
DBHelper conecton.Open();
//执行语句,接收
SqlDataReader reader=cmd.Execute.Reader();
//Resd();返回一个布尔值
while(reader.Read())
{
id=(int)reader[“id”];
userName=(string)reader[“userName”];
name=(string)reader[“name”];
studentNum=(int)reader[“studentNum”];
state=(string)reader[“state”];
//添加liseview 要记住先后顺序
//ListViewItem 代表ListView中的一行
ListViewItem item=new ListViewItem(userName);//viewlist中第一列
item.SubItems.AddRange(new string[]{name,studentNum.ToString(),state});
item.Tag=id;
lv.Student.Items.Add(item);//把造出来的这一行加到ListView控件里面
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值