C# winform中ListView用法

来源:互联网 发布:南京 网络问政 编辑:程序博客网 时间:2024/05/16 11:47
            //更改属性            this.listView1.GridLines = true; //显示表格线            this.listView1.View = View.Details;//显示表格细节            this.listView1.LabelEdit = true; //是否可编辑,ListView只可编辑第一列。            this.listView1.Scrollable = true;//有滚动条            this.listView1.HeaderStyle = ColumnHeaderStyle.Clickable;//对表头进行设置            this.listView1.FullRowSelect = true;//是否可以选择行            //this.listView1.HotTracking = true;// 当选择此属性时则HoverSelection自动为true和Activation属性为oneClick            //this.listView1.HoverSelection = true;            //this.listView1.Activation = ItemActivation.Standard; //            //添加表头            this.listView1.Columns.Add("", 0);            this.listView1.Columns.Add("列1",80);            this.listView1.Columns.Add("列2", 160);            //添加各项            ListViewItem[] p = new ListViewItem[2];            p[0] = new ListViewItem(new string[] { "","aaaa","bbbb"});            p[1] = new ListViewItem(new string[] { "","cccc", "ggggg" });            //p[0].SubItems[0].BackColor = Color.Red; //用于设置某行的背景颜色            this.listView1.Items.AddRange(p);            //也可以用this.listView1.Items.Add();不过需要在使用的前后添加Begin... 和End...防止界面自动刷新            // 添加分组            this.listView1.Groups.Add(new ListViewGroup("tou"));            this.listView1.Groups.Add(new ListViewGroup("wei"));            this.listView1.Items[0].Group = this.listView1.Groups[0];            this.listView1.Items[1].Group = this.listView1.Groups[1];

原创粉丝点击