溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

c# winform treelistview的使用(treegridview)實例詳解

發(fā)布時間:2020-10-17 01:32:54 來源:腳本之家 閱讀:1472 作者:波谷 欄目:編程語言

TreeView控件顯示的內(nèi)容比較單一,如果需要呈現(xiàn)更詳細(xì)信息TreeListView是一個不錯的選擇。

先看效果:

c# winform treelistview的使用(treegridview)實例詳解

首先需要引用文件System.Windows.Forms.TreeListView.dll、System.Runtime.InteropServices.APIs.dll

你可以將TreeListView加入到工具箱中然后在添加到窗體中。

1.你需要添加列

c# winform treelistview的使用(treegridview)實例詳解

2.你需要添加一個ImageList作為節(jié)點圖標(biāo)的容器(你還需要配置TreeListView的SmallImageList屬性為ImageList控件的ID)

c# winform treelistview的使用(treegridview)實例詳解

3.現(xiàn)在可以給控件綁定數(shù)據(jù)了

此控件比較適合呈現(xiàn)具有父子級關(guān)系的復(fù)雜數(shù)據(jù)結(jié)構(gòu),當(dāng)然也包含XML格式的數(shù)據(jù)

下面嘗試解析一個設(shè)備樹XML然后綁定到控件中:

<Device name="hidc-1600tv _192.168.230.188" ItemType="DVR" type="Onvif" TypeID="" Code="" location="" Description="" ID="" UniqueID="192.168.230.188">
 <IP Value="192.168.230.188" />
 <Port Value="80" />
 <Username Value="admin" />
 <Password Value="1234" />
 <AuthenAddress Value="/" />
 <AuthenMode Value="1" />
 <OnvifUser Value="admin" />
 <OnvifPwd Value="1234" />
 <OnvifAddress Value="/onvif/device_service" />
 <RTSPUser Value="admin" />
 <RTSPPwd Value="1234" />
 <ChildDevices>
  <Device name="" ItemType="Channel" type="" TypeID="" Code="" location="" Description="" id="" UniqueID="">
   <PTZEnable Value="True" />
   <PTZ1 Value="5" />
   <PTZ2 Value="15" />
   <PTZ3 Value="25" />
   <PTZ4 Value="35" />
   <PTZ5 Value="45" />
   <PTZ6 Value="55" />
   <PTZ7 Value="65" />
   <PTZ8 Value="75" />
   <PTZ9 Value="85" />
   <ChildDevices>
    <Device name="" ItemType="RStreamer" type="" TypeID="1" Code="" location="" Description="" id="">
     <MediaProfile Value="1" />
     <Multicast Value="False" />
    </Device>
    <Device name="" ItemType="RStreamer" type="" TypeID="2" Code="" location="" Description="" id="">
     <MediaProfile Value="2" />
     <Multicast Value="False" />
    </Device>
   </ChildDevices>
  </Device>
 </ChildDevices>
</Device>

使用遞歸算法很容易提取XML的結(jié)構(gòu)         

 public void LoadXmlTree(string xml)
    {
      XDocument xDoc = XDocument.Parse(xml);
      TreeListViewItem item = new TreeListViewItem();
      string title = xDoc.Root.Attribute("name")?.Value ?? xDoc.Root.Name.LocalName;
      item.Text = title;
      item.ImageIndex = 0;
      item.SubItems.Add(xDoc.Root.Attribute("UniqueID")?.Value);
      item.SubItems.Add(xDoc.Root.Attribute("ItemType")?.Value);
      PopulateTree (xDoc.Root, item.Items);
      tvDevice.Items.Add(item);
    }
    public void PopulateTree (XElement element, TreeListViewItemCollection items)
    {
      foreach (XElement node in element.Nodes())
      {
        TreeListViewItem item = new TreeListViewItem();
        string title = node.Name.LocalName.Trim();
        item.Text = title;
        if (title == "Device")
        {
          var attr = node.Attribute("ItemType")?.Value;
          switch (attr)
          {
            case "Channel": item.ImageIndex = 1; break;
            case "RStreamer": item.ImageIndex = 3; break;
            default: break;
          }
          item.SubItems.Add(node.Attribute("UniqueID")?.Value);
          item.SubItems.Add(node.Attribute("ItemType")?.Value);
        }
        else
        {
          item.ImageIndex = 2;
          item.SubItems.Add(node.Attribute("Value")?.Value);
        }
        if (node.HasElements)
        {
          PopulateTree (node, item.Items);
        }
        items.Add(item);
      }
    }

說明:

TreeListViewItem可構(gòu)造傳入value和imageindex,其中value會賦值給Text屬性,imageindex就是節(jié)點顯示的圖標(biāo)所對應(yīng)的ImageList的索引。TreeListViewItem的SubItems就是其擴展列,它會按順序依次顯示到后面的列中。

你可以設(shè)置ExpandMethod屬性來控制節(jié)點展開的方式,設(shè)置CheckBoxes屬性控制是否顯示復(fù)選框。

你可以通過訂閱BeforeExpand、BeforeCollapse、BeforeLabelEdit三個事件來修改不同狀態(tài)下的圖標(biāo),如:  

 private void treeListView1_BeforeExpand(object sender, TreeListViewCancelEventArgs e)
    {
      if(e.Item.ImageIndex == 0) e.Item.ImageIndex = 1;
    }

你可以設(shè)置LabelEdit屬性來激活或禁用編輯,TreeListViewBeforeLabelEditEventArgs參數(shù)提供了相應(yīng)的屬性值。   

 private void treeListView1_BeforeLabelEdit(object sender, TreeListViewBeforeLabelEditEventArgs e)
    {
      if(e.ColumnIndex == 1)
      {
        ComboBox combobox = new ComboBox();
        combobox.Items.AddRange(new string[]{"Html","Css","Javascript"});
        e.Editor = combobox;
      }
    }

TreeListView開源你也可以根據(jù)自己的需要進行修改。

總結(jié)

以上所述是小編給大家介紹的c# winform treelistview的使用(treegridview),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對億速云網(wǎng)站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI