博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# winform中ListView用法
阅读量:5313 次
发布时间:2019-06-14

本文共 1721 字,大约阅读时间需要 5 分钟。

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]; listview,怎么也没找到从那个地方调整item的行高, 找来找去也没发现,真想大骂微软一下,仔细思考一下,因该有2种方式,一种重写listview,另外一种listview肯定有相关属性来调整行高,功夫不负有心人。网上有个写高人,通过如下方式来实现1,添加一imagelist控件2,指定listview的smallimages属性为imagelist13,只需要调整imagelist中图像高度.listview控件中的高度随之调整。非常简单的小问题

 

转载于:https://www.cnblogs.com/maijin/archive/2012/12/14/2817658.html

你可能感兴趣的文章
前端读者 | 前端面试基础手册(HTML+CSS)
查看>>
(五)归一化
查看>>
【SERVER_NAME】PHP中的SERVER_NAME【原创】
查看>>
hdu 5884 Sort 队列+多叉哈夫曼树
查看>>
hdu 4737 A Bit Fun 尺取法
查看>>
使用信号量
查看>>
《数据分析实战》--第三章 python实现
查看>>
crontab command not found
查看>>
记录-springMVC访问web-inf下文件问题+在jsp页面导入jquery插件路径不对问题
查看>>
对于C语言中数组名是指针的理解
查看>>
实验八 接口与实现接口的类
查看>>
mac OSx 安装 mysqlclient
查看>>
Scala for the Impatients---(10)Traits
查看>>
简单的姓名号码查询系统
查看>>
PostgreSQL 保留关键字添加方法之一,不带参数的函数
查看>>
你的博客可能被爬了
查看>>
赛前热手 (天梯赛暴力题)
查看>>
Activator.CreateInstance(Type type)方法创建对象和Expression Tree创建对象性能的比较(终结版)...
查看>>
在线集成开发环境
查看>>
.net 冒泡排序示例
查看>>