您的位置:首页 > 其它

WebForm下的CheckedListBox、listBox 可以进行数据绑定

2009-09-26 10:18 369 查看
http://hi.baidu.com/hwh_huazi/blog/item/ea1ac016ec5bba0ec83d6d6e.html

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.Data.SqlClient;

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

private void button1_Click(object sender, EventArgs e)
{
string strConn = @"server=Macor;Database=Corpdata;uid=sa;pwd=sa;";
string strSql = "select * from News";
SqlConnection conn = new SqlConnection(strConn);
SqlCommand cmd = new SqlCommand(strSql, conn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataTable ds = new DataTable();
da.Fill(ds);
this.checkedListBox1.DataSource = ds;
this.checkedListBox1.DisplayMember = "Leibie";
this.checkedListBox1.ValueMember = "NewsID";

this.listBox1.DataSource = ds;
this.listBox1.DisplayMember = "Leibie";
this.listBox1.ValueMember = "NewsID";
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: