C#中ListBox控件中当可以进行多选择时如何获取选中项的Value值 listbox获取选中的值
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 listbox
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection("server=.;integrated security=true;database=test");
con.Open();
SqlCommand cmd = new SqlCommand("select sname from student", con);
SqlDataAdapter sda = new SqlDataAdapter(cmd);
DataSet ds = new DataSet();
sda.Fill(ds, "student");
DataView dv = new DataView(ds.Tables[0]);
listBox1.DisplayMember = "sname";
listBox1.ValueMember = "sname";
listBox1.SelectionMode = SelectionMode.MultiExtended;
listBox1.DataSource = dv;
}
private void button1_Click(object sender, EventArgs e)
{
label1.Text = "";
for (int i = 0; i < listBox1.SelectedItems.Count; i++)
{
//MessageBox.Show(listBox1.GetItemText(listBox1.SelectedItems[i]));
label1.Text += listBox1.GetItemText(listBox1.SelectedItems[i]);
}
}
}
}
更多阅读
MFC中进度条控件的使用方法 mfc进度条控件使用
MFC中进度条控件的使用方法——简介进度条控件是程序开发中基础控件之一,常用于显示程序的进度。在进行程序安装、文件传输时经常用到。其用法也比较简单固定。今天就和大家分享一下其简单的使用方法吧。^_^MFC中进度条控件的使用方
怎样使用C#的月历MonthCalendar 控件 c panel控件的使用
怎样使用C#的月历【MonthCalendar】控件——简介 C#中的日历控件【MonthCalendar】是比较常用的一个控件,可以让用户对日期进行快速的查看和设置、也可以选择一段所需要的日期时间段。 下面介绍一下几种日历控件常用的使用方法。怎
如何使用C#TextBox控件 textboxdropdown控件
如何使用C#TextBox控件——简介在c#中TextBox控件做为最重要的控件,必须要下功夫吃透,学通。下面我给大家说说TextBox控件的三个重要属性如何使用C#TextBox控件——方法/步骤
7款实用的商用图表控件 郑凤如实用图表
最近,有个朋友叫我给他推荐一款比较好的图表控件,在我看来,好的图表控件很多,但是好的并不一定适合,只有符合自己需求的才是最好的!这里,我也为大家选了几款目前比较流行的7款图表控件,大家可以根据自己的需求进行自由选择!1、IocompIocom
如何在VB 6.0中添加和使用CommonDialog 控件? vb6.0控件下载
如何在VB 6.0中添加和使用CommonDialog 控件?——简介CommonDialog 控件可以提供标准的打开、另存、选择颜色、字体、设置打印选项等对话框。在VB 6.0中可以按照以下的步骤添加、使用CommonDialog。如何在VB 6.0中添加和使用CommonD