zoukankan      html  css  js  c++  java
  • C# winform中ListView用法

                //更改属性
                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];
  • 相关阅读:
    Leetcode题库——40.组合总和II
    (课)阅读笔记3_1
    (课)学习进度报告十
    (课)赛题的需求分析
    (课)阅读笔记2_3
    (课)学习进度报告九
    (课)学习进度报告八
    (tensorflow计算)如何查看tensorflow计算用的是CPU还是GPU
    (课)阅读笔记2_2
    (课)温昱 第三部分Refined Architecture阶段 总结
  • 原文地址:https://www.cnblogs.com/fornet/p/3017501.html
Copyright © 2011-2022 走看看