WinForm中ListView的使用

Posted wyp1988

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WinForm中ListView的使用相关的知识,希望对你有一定的参考价值。

  • 每一行是一个ListViewItem对象,每一项是一个ListViewSubItem对象
  • 样式
    • 整行选择:this.lvDataSourceSearchHistory.FullRowSelect = true;
    • 文本是否可编辑:this.lvDataSourceSearchHistory.LabelEdit = false;
    • 隐藏列头:this.lvDataSourceSearchHistory.HeaderStyle = ColumnHeaderStyle.None;
    • 边框样式:this.lvDataSourceSearchHistory.BorderStyle = BorderStyle.Fixed3D;
  • 绑定数据
    • this.lvDataSourceSearchHistory.Columns.Clear();
    • this.lvDataSourceSearchHistory.Columns.Add("Search Text");
    • this.lvDataSourceSearchHistory.Columns.Add("Delete Button");
    • 固定宽度:this.lvDataSourceSearchHistory.Columns[0].Width = 440;
    • 固定宽度:this.lvDataSourceSearchHistory.Columns[1].Width = 15;
  • 自定义显示每一行每一项的显示

 

以上是关于WinForm中ListView的使用的主要内容,如果未能解决你的问题,请参考以下文章

Winform中ListView 的view 属性设置为SmallIcon时最左边的复选框会显示不全(会被盖住半块)?

关于winform中listView 老是显示不出数据来

winform c# listview 如何 选中行!急!在线等!

winform c# listview 如何 选中行!急!在线等!

C#如何让listview可编辑 winform

C# winform项目中ListView控件使用CheckBoxes属性实现单选功能