码迷,mamicode.com
首页 > Windows程序 > 详细

C# ListView

时间:2018-08-03 23:41:12      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:hid   .text   ted   样式   高亮   component   als   load   lis   

ListView失去焦点选中行不能高亮显示的问题

ListView的HideSelection属性设置为True。

 1 public Form1()
 2         {
 3             InitializeComponent();
 4 
 5             //显示样式
 6             listView1.View = View.LargeIcon;
 7             listView1.LargeImageList = imageList1;
 8 
 9             //禁止多选
10             listView1.MultiSelect = false;
11 
12             //添加项
13             listView1.Items.Add("aaaaaa");
14             listView1.Items.Add("BBBBBBB");
15 
16             listView1.Items[0].ImageIndex = 0;
17             listView1.Items[1].ImageIndex = 0;
18 
19         }
20 
21         private void Form1_Load(object sender, EventArgs e)
22         {
23             //选中一项
24             listView1.Items[1].Selected = true;
25             listView1.Items[0].EnsureVisible();
26             listView1.Select();                 //激活控件
27             
28 
29         }
30 
31         private void button1_Click(object sender, EventArgs e)
32         {
33             string str = listView1.SelectedItems[0].Text;
34 
35             MessageBox.Show(str);
36         }
37 
38 
39 
40         private void listView1_Click(object sender, EventArgs e)
41         {
42             string str = listView1.SelectedItems[0].Text;
43 
44             MessageBox.Show(str);
45 
46         }

 

C# ListView

标签:hid   .text   ted   样式   高亮   component   als   load   lis   

原文地址:https://www.cnblogs.com/ly1686/p/9416863.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!