• 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];
    复制代码
  • 相关阅读:
    fastdfs部署及官网
    fasrdfs在spring cloud中的使用
    面包屑的查询
    SpringCloud中使用ES使用课程上下线
    Redis中在项目中的使用
    树结构Tree查询
    平凡的世界 田晓霞的日记 摘抄

    英语积累
    英语学习第四天
  • 原文地址:https://www.cnblogs.com/zhangruifeng/p/5916515.html
Copyright © 2020-2023  润新知