Winform組合ComboBox和TreeView實現ComboTreeView

来源:https://www.cnblogs.com/yitouniu/archive/2019/09/26/11589266.html
-Advertisement-
Play Games

使用ComboBox和TreeView控制項實現下拉樹控制項ComboTreeView ...


最近做Winform項目需要用到類似ComboBox的TreeView控制項。

雖然各種第三方控制項很多,但是存在各種版本不相容問題。所以自己寫了個簡單的ComboTreeView控制項。

下圖是實現效果:

目前實現的比較簡單,能滿足我項目中的需求。

此處是項目中的代碼簡化後的版本,供大家參考。

  1 using System;
  2 using System.Collections.Generic;
  3 using System.Windows.Forms;
  4 
  5 namespace CustomControl.Tree
  6 {
  7     public abstract class ComboTreeView<T> : ComboBox where T : class
  8     {
  9         protected const int WM_LBUTTONDOWN = 0x0201, WM_LBUTTONDBLCLK = 0x0203;
 10 
 11         protected TreeView treeView;
 12         protected ToolStripControlHost treeViewHost;
 13         protected ToolStripDropDown dropDown;
 14         protected bool dropDownOpen = false;
 15         protected TreeNode selectedNode;
 16         protected T selectedNodeData;
 17         protected T toBeSelected;
 18 
 19         public ComboTreeView(TreeView internalTreeView)
 20         {
 21             if (null == internalTreeView)
 22             {
 23                 throw new ArgumentNullException("internalTreeView");
 24             }
 25             this.InitializeControls(internalTreeView);
 26         }
 27 
 28         public event TreeNodeChangedEventHandler TreeNodeChanged;
 29 
 30         protected virtual void InitializeControls(TreeView internalTreeView)
 31         {
 32             this.treeView = internalTreeView;
 33             this.treeView.BorderStyle = BorderStyle.FixedSingle;
 34             this.treeView.Margin = new Padding(0);
 35             this.treeView.Padding = new Padding(0);
 36             this.treeView.AfterExpand += new TreeViewEventHandler(this.WhenAfterExpand);
 37 
 38             this.treeViewHost = new ToolStripControlHost(this.treeView);
 39             this.treeViewHost.Margin = new Padding(0);
 40             this.treeViewHost.Padding = new Padding(0);
 41             this.treeViewHost.AutoSize = false;
 42 
 43             this.dropDown = new ToolStripDropDown();
 44             this.dropDown.Margin = new Padding(0);
 45             this.dropDown.Padding = new Padding(0);
 46             this.dropDown.AutoSize = false;
 47             this.dropDown.DropShadowEnabled = true;
 48             this.dropDown.Items.Add(this.treeViewHost);
 49             this.dropDown.Closed += new ToolStripDropDownClosedEventHandler(this.OnDropDownClosed);
 50 
 51             this.DropDownWidth = this.Width;
 52             base.DropDownStyle = ComboBoxStyle.DropDownList;
 53             base.SizeChanged += new EventHandler(this.WhenComboboxSizeChanged);
 54         }
 55 
 56         public new ComboBoxStyle DropDownStyle
 57         {
 58             get { return base.DropDownStyle; }
 59             set { base.DropDownStyle = ComboBoxStyle.DropDownList; }
 60         }
 61 
 62         public virtual TreeNode SelectedNode
 63         {
 64             get { return this.selectedNode; }
 65             private set { this.treeView.SelectedNode = value; }
 66         }
 67 
 68         public virtual T SelectedNodeData
 69         {
 70             get { return this.selectedNodeData; }
 71             set
 72             {
 73                 this.selectedNodeData = value;
 74                 this.toBeSelected = value;
 75                 this.UpdateComboBox(value);
 76             }
 77         }
 78 
 79         protected new int SelectedIndex
 80         {
 81             get { return base.SelectedIndex; }
 82             set { base.SelectedIndex = value; }
 83         }
 84 
 85         protected new object SelectedItem
 86         {
 87             get { return base.SelectedItem; }
 88             set { base.SelectedItem = value; }
 89         }
 90 
 91         public virtual string DisplayMember { get; set; } = "Name";
 92 
 93         /// <summary>Gets the internal TreeView control.</summary>
 94         public virtual TreeView TreeView => this.treeView;
 95 
 96         /// <summary>Gets the collection of tree nodes that are assigned to the tree view control.</summary>
 97         /// <returns>A <see cref="T:System.Windows.Forms.TreeNodeCollection" /> that represents the tree nodes assigned to the tree view control.</returns>
 98         public virtual TreeNodeCollection Nodes => this.treeView.Nodes;
 99 
100         public new int DropDownHeight { get; set; } = 100;
101 
102         public new int DropDownWidth { get; set; } = 100;
103 
104         protected virtual void ShowDropDown()
105         {
106             this.dropDown.Width = this.Width;
107             this.dropDown.Height = this.DropDownHeight;
108             this.treeViewHost.Width = this.Width;
109             this.treeViewHost.Height = this.DropDownHeight;
110             this.treeView.Font = this.Font;
111             this.dropDown.Focus();
112             this.dropDownOpen = true;
113             this.dropDown.Show(this, 0, base.Height);
114         }
115 
116         protected virtual void HideDropDown()
117         {
118             this.dropDown.Hide();
119             this.dropDownOpen = false;
120         }
121 
122         protected virtual void ToggleDropDown()
123         {
124             if (!this.dropDownOpen)
125             {
126                 this.ShowDropDown();
127             }
128             else
129             {
130                 this.HideDropDown();
131             }
132         }
133 
134         protected override void WndProc(ref Message m)
135         {
136             if ((WM_LBUTTONDOWN == m.Msg) || (WM_LBUTTONDBLCLK == m.Msg))
137             {
138                 if (!this.Focused)
139                 {
140                     this.Focus();
141                 }
142                 this.ToggleDropDown();
143             }
144             else
145             {
146                 base.WndProc(ref m);
147             }
148         }
149 
150         protected override void Dispose(bool disposing)
151         {
152             if (disposing)
153             {
154                 if (this.dropDown != null)
155                 {
156                     this.dropDown.Dispose();
157                     this.dropDown = null;
158                 }
159             }
160             base.Dispose(disposing);
161         }
162 
163         protected virtual void WhenTreeNodeChanged(TreeNode newValue)
164         {
165             if ((null != this.selectedNode) || (null != newValue))
166             {
167                 bool changed;
168                 if ((null != this.selectedNode) && (null != newValue))
169                 {
170                     changed = (this.selectedNode.GetHashCode() != newValue.GetHashCode());
171                 }
172                 else
173                 {
174                     changed = true;
175                 }
176 
177                 if (changed && (null != this.TreeNodeChanged))
178                 {
179                     try
180                     {
181                         this.TreeNodeChanged.Invoke(this, new TreeNodeChangedEventArgs(this.selectedNode, newValue));
182                     }
183                     catch (Exception)
184                     {
185                         // do nothing
186                     }
187                 }
188 
189                 this.selectedNode = newValue;
190             }
191         }
192 
193         protected virtual void OnDropDownClosed(object sender, ToolStripDropDownClosedEventArgs e)
194         {
195             if (null == this.toBeSelected)
196             {
197                 var selectedNode = this.treeView.SelectedNode;
198                 var selectedData = this.GetTreeNodeData(selectedNode);
199                 this.UpdateComboBox(selectedData);
200                 this.WhenTreeNodeChanged(selectedNode);
201             }
202         }
203 
204         protected virtual void UpdateComboBox(T data)
205         {
206             base.DisplayMember = this.DisplayMember; // update DisplayMember
207             if (null != data)
208             {
209                 this.DataSource = new List<T>() { data };
210                 this.SelectedIndex = 0;
211             }
212             else
213             {
214                 this.DataSource = null;
215             }
216         }
217 
218         protected virtual void WhenAfterExpand(object sender, TreeViewEventArgs e)
219         {
220             if (null != this.toBeSelected)
221             {
222                 if (this.SelectChildNode(e.Node.Nodes, this.toBeSelected))
223                 {
224                     this.toBeSelected = null;
225                 }
226             }
227         }
228 
229         protected virtual void WhenComboboxSizeChanged(object sender, EventArgs e)
230         {
231             this.DropDownWidth = base.Width;
232         }
233 
234         public virtual bool SelectChildNode(TreeNodeCollection nodes, T data)
235         {
236             var node = this.FindChildNode(nodes, data);
237             if (null != node)
238             {
239                 this.DoSelectTreeNode(node);
240                 return true;
241             }
242             else
243             {
244                 return false;
245             }
246         }
247 
248         protected abstract bool Identical(T x, T y);
249 
250         protected virtual void DoSelectTreeNode(TreeNode node)
251         {
252             this.SelectedNode = node;
253             this.ExpandTreeNode(node.Parent);
254         }
255 
256         public virtual TreeNode FindChildNode(TreeNodeCollection nodes, T data)
257         {
258             foreach (TreeNode node in nodes)
259             {
260                 var nodeData = this.GetTreeNodeData(node);
261                 if (this.Identical(nodeData, data))
262                 {
263                     return node;
264                 }
265             }
266 
267             return null;
268         }
269 
270         public virtual void ExpandTreeNode(TreeNode node)
271         {
272             if (null != node)
273             {
274                 node.Expand();
275                 this.ExpandTreeNode(node.Parent);
276             }
277         }
278 
279         public abstract T GetTreeNodeData(TreeNode node);
280     }
281 }

完整項目下載


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • c# sharepoint client object model 客戶端如何創建中英文站點 ClientContext ClientValidate = tools.GetContext(OnlineSiteUrl, User, Pass, true); Web oWebSite = Client ...
  • [TOC] .NET Conf 2019 2019 9.23 9.25召開了 ".NET Conf 2019" 大會,大會宣佈了 ".Net Core 3.0" 正式版。這兩天我也開始試著將自己Github上的項目從 .Net Core 2.2升級到 .Net Core 3.0 。其中有一個項目,是 ...
  • 場景 Winforn中設置ZedGraph曲線圖的屬性、坐標軸屬性、刻度屬性: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100112573 Winform中實現ZedGraph的多條Y軸(附源碼下載): https://bl ...
  • 前提 入行已經7,8年了,一直想做一套漂亮點的自定義控制項,於是就有了本系列文章。 GitHub:https://github.com/kwwwvagaa/NetWinformControl 碼雲:https://gitee.com/kwwwvagaa/net_winform_custom_contr ...
  • Web、Asp.Net、.Net、WebAPI獲取表單數據流(批量文件上傳) ...
  • 上一篇學習到瞭如何簡單的創建.Net Core Api和Swagger使用,既然寫了介面,那麼就需要部署到伺服器上才能夠正式使用。伺服器主要用到了兩種系統,Windows和Linux,.Net和Windows都是屬於微軟爸爸的,那麼這一篇就先從部署到Windows伺服器系統開始吧。 一、準備伺服器 ...
  • 概覽 現代應用程式看上去大都是這樣的: 最常見的交互是: 瀏覽器與Web應用程式通信 Web應用程式與Web API通信(有時是獨立的,有時是代表用戶的) 基於瀏覽器的應用程式與Web API通信 本機應用程式與Web API通信 基於伺服器的應用程式與Web API通信 Web API與Web A ...
  • 泛型種類: 1)泛型類 2)泛型介面 3)泛型方法 4)泛型數組 5)泛型委托 6)泛型結構 泛型約束: 為什麼要使用泛型約束? 通過約束類型參數,可以增加約束類型及其繼承層次結構中的所有類型所支持的允許操作和方法調用的數量。設計泛型類或方法時,如果要對泛型成員執行除簡單賦值之外的任何操作或調用Sy ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...