You could look at MSDN. It's show details.

解决方案 »

  1.   

    看.net的联机帮助吧,这么好用的东西都不用,太浪费了
      

  2.   

    items表示行。
    columns表示列。
    要加就使用相应的add方法,还有什么难的吗?
      

  3.   

    和别的控件都差不多
    1、选择是什么方式的(是四种样式的那种)
    2、就是填加item项了(如果是list样式的就加column)]
    3、加入两个imagelist,大图标和小图标需要那个用那个,
      

  4.   

    MM,在哪儿,过来我教你!嘿嘿我喜欢教MM!
      

  5.   

    到MSDN去找啊,那里有好多你可以学的东东
      

  6.   

    挺多书上都有介绍
    下面是listview的一个例子
    //----------------------------------------------
    // SysInfoListView.cs ?2001 by Charles Petzold
    //----------------------------------------------
    using System;
    using System.Drawing;
    using System.Windows.Forms;class SysInfoListView: Form
    {
         public static void Main()
         {
              Application.Run(new SysInfoListView());
         }
         public SysInfoListView()
         {
              Text = "System Information (List View)";               // Create ListView control.          ListView listview = new ListView();
              listview.Parent = this;
              listview.Dock = DockStyle.Fill;
              listview.View = View.Details;
              
                   // Define columns based on maximum string widths.          Graphics grfx = CreateGraphics();          listview.Columns.Add("Property", 
                        (int) SysInfoReflectionStrings.MaxLabelWidth(grfx, Font),
                        HorizontalAlignment.Left);          listview.Columns.Add("Value",
                        (int) SysInfoReflectionStrings.MaxValueWidth(grfx, Font),
                        HorizontalAlignment.Left);          grfx.Dispose();               // Get the data that will be displayed.          int      iNumItems  = SysInfoReflectionStrings.Count;
              string[] astrLabels = SysInfoReflectionStrings.Labels;
              string[] astrValues = SysInfoReflectionStrings.Values;               // Define the items and subitems.          for (int i = 0; i < iNumItems; i++)
              {
                   ListViewItem lvi = new ListViewItem(astrLabels[i]);
                   lvi.SubItems.Add(astrValues[i]);
                   listview.Items.Add(lvi);
              }
         }
    }