怎样在combobox中添加数据

怎样在combobox中添加数据,第1张

以users表为例,有三个字段,自增长的编号id,int类型名称name,nvarchar类型,密码pwd,nvarchar类型

首先在vs2005中引入using System.Data.SqlClient命名空间

/// 查询

/// </summary>

/// <returns></returns>

public DataTable Select()

{

SqlConnection conn = new SqlConnection(@"Data Source=.\SQLEXPRESSInitial Catalog=TestIntegrated Security=True")//Initial Catalog后面跟你数据库的名字,如果你的SqlServer服务器名称后面不带SQLEXPRESS,那么Data Source=.

conn.Open()

string sql = "select * from users"

SqlCommand cmd = new SqlCommand(sql, conn)

SqlDataAdapter sda = new SqlDataAdapter(cmd)

DataTable dt = new DataTable()

sda.Fill(dt)

用一个comboBox和textBox就好,comboBox:名称,textBox:密码;

定义一个键值对 SortedList<string ,string >UserInfoList = new SortedList<string ,string >()

for (int i = 0i <ds.Tables[0].Rows.Counti++)

{

UserInfoList.add(e.loginname,e.password)

}

comboBox绑定数据库中所有的名称(e.loginname),再添加一个“ ” (空的),

comboBoxUser.Items.Add(" ")

foreach (DictionaryEntry element in UserInfoList)

{

comboBoxUser.Items.Add(element.Key.ToString())

}

将这个comboBox DropDownStyle设为DropDownList,在他的Textchange事件中写代码,找到与e.loginname相对应的e.password实现在后面的textBox中;

private void comboBoxUser_TextChanged(object sender, EventArgs e)

{

textBoxPWord.Text= UserInfoList.FirstOrDefault(c =>c.Key ==comboBoxUser.Text )

}

textBox readOnly设为true;

不要数据绑定的话那就这样写啊

<ComboBox Margin="10" Width="150" SelectedIndex="0" Name="combobox">

    <ComboBoxItem Content="-请选择-"></ComboBoxItem>

    <ComboBoxItem Content="数据1"></ComboBoxItem>

    <ComboBoxItem Content="数据2"></ComboBoxItem>

    <ComboBoxItem Content="数据3"></ComboBoxItem>

</ComboBox>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11609236.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存