C#如何获取listview选中项

RT,Listview中有9项,任意点击一项请问要如何获取,尽量讲得具体些吧~谢谢啦~... RT,Listview中有9项,任意点击一项请问要如何获取,尽量讲得具体些吧~谢谢啦~ 展开
 我来答
xuxiaoyisos
2009-09-26 · TA获得超过539个赞
知道小有建树答主
回答量:486
采纳率:0%
帮助的人:277万
展开全部
foreach(ListViewItem item in listview.Items)
{
if(listview.Items.Checked == true)
{
string message = “”;
}
}

private void CreateMyListView()
{
// Create a new ListView control.
ListView listView1 = new ListView();
listView1.Bounds = new Rectangle(new Point(10,10), new Size(300,200));

// Set the view to show details.
listView1.View = View.Details;
// Allow the user to edit item text.
listView1.LabelEdit = true;
// Allow the user to rearrange columns.
listView1.AllowColumnReorder = true;
// Display check boxes.
listView1.CheckBoxes = true;
// Select the item and subitems when selection is made.
listView1.FullRowSelect = true;
// Display grid lines.
listView1.GridLines = true;
// Sort the items in the list in ascending order.
listView1.Sorting = SortOrder.Ascending;

// Create three items and three sets of subitems for each item.
ListViewItem item1 = new ListViewItem("item1",0);
// Place a check mark next to the item.
item1.Checked = true;
item1.SubItems.Add("1");
item1.SubItems.Add("2");
item1.SubItems.Add("3");
ListViewItem item2 = new ListViewItem("item2",1);
item2.SubItems.Add("4");
item2.SubItems.Add("5");
item2.SubItems.Add("6");
ListViewItem item3 = new ListViewItem("item3",0);
// Place a check mark next to the item.
item3.Checked = true;
item3.SubItems.Add("7");
item3.SubItems.Add("8");
item3.SubItems.Add("9");

// Create columns for the items and subitems.
listView1.Columns.Add("Item Column", -2, HorizontalAlignment.Left);
listView1.Columns.Add("Column 2", -2, HorizontalAlignment.Left);
listView1.Columns.Add("Column 3", -2, HorizontalAlignment.Left);
listView1.Columns.Add("Column 4", -2, HorizontalAlignment.Center);

//Add the items to the ListView.
listView1.Items.AddRange(new ListViewItem[]{item1,item2,item3});

// Create two ImageList objects.
ImageList imageListSmall = new ImageList();
ImageList imageListLarge = new ImageList();

// Initialize the ImageList objects with bitmaps.
imageListSmall.Images.Add(Bitmap.FromFile("C:\\MySmallImage1.bmp"));
imageListSmall.Images.Add(Bitmap.FromFile("C:\\MySmallImage2.bmp"));
imageListLarge.Images.Add(Bitmap.FromFile("C:\\MyLargeImage1.bmp"));
imageListLarge.Images.Add(Bitmap.FromFile("C:\\MyLargeImage2.bmp"));

//Assign the ImageList objects to the ListView.
listView1.LargeImageList = imageListLarge;
listView1.SmallImageList = imageListSmall;

// Add the ListView to the control collection.
this.Controls.Add(listView1);
}
longge761001654b3
推荐于2017-11-28 · TA获得超过1067个赞
知道小有建树答主
回答量:356
采纳率:66%
帮助的人:179万
展开全部
选中项的文本值:this.listView1.SelectedItems[0].Text;
选中项的子项的文本值
this.listView1.SelectedItems[0].SubItems[0].Text;(SubItems[0]表示选中项的第一个子项,第二个子项就是SubItem[1],第三个就是SubItems[2]....以此类推)
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
就烦条0o
2018-08-03 · 知道合伙人软件行家
就烦条0o
知道合伙人软件行家
采纳数:33315 获赞数:46483
从事多年系统运维,喜欢编写各种小程序和脚本。

向TA提问 私信TA
展开全部
你要Vb.net版的还是C#版的?下面是VB.NET版的:
Dim i As Integer=listview.items.indexof(listview.focuseditem)'首先获得选中项的索引
Msgbox(listview.items(i).subitems(0).text)'弹出消息框显示所选择项的第0列的文本
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
江小右
2009-09-26 · TA获得超过6928个赞
知道小有建树答主
回答量:1195
采纳率:0%
帮助的人:814万
展开全部
listBox2.SelectedItem这个就可以了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友e155377
2018-05-16
知道答主
回答量:1
采纳率:0%
帮助的人:848
引用longge7610的回答:
选中项的文本值:this.listView1.SelectedItems[0].Text;
选中项的子项的文本值
this.listView1.SelectedItems[0].SubItems[0].Text;(SubItems[0]表示选中项的第一个子项,第二个子项就是SubItem[1],第三个就是SubItems[2]....以此类推)
展开全部
private void listView1_ItemSelectionChanged(object sender,EventArgs e)
{ if (listView1.SelectedItems.Count == 0) return;
else
{
string site = listView1.SelectedItems[0].Text;
string type = listView1.SelectedItems[0].SubItems[1].Text;
}
}
需要加一个判断,不然未选中或者鼠标换选项目的时候会报错的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式