C#中ListBox控件中当可以进行多选择时如何获取选中项的Value值 listbox获取选中的值

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 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)
C#中ListBox控件中当可以进行多选择时如何获取选中项的Value值 listbox获取选中的值

{

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]);

}

}

}

}

  

爱华网本文地址 » http://www.413yy.cn/a/25101012/131461.html

更多阅读

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

声明:《C#中ListBox控件中当可以进行多选择时如何获取选中项的Value值 listbox获取选中的值》为网友归去如风分享!如侵犯到您的合法权益请联系我们删除