基本信息
源码名称:C# 树形结构自动搜索填充
源码大小:0.07M
文件格式:.rar
开发语言:C#
更新时间:2015-11-19
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Collections; namespace WindowsFormsApplication1 { public partial class Form1 : Form { private ToolStripControlHost dtTScomponent; public Form1() { InitializeComponent(); DropDownTree MyDropDownTree = new DropDownTree(); dtTScomponent = new ToolStripControlHost(MyDropDownTree); this.toolStrip1.Items.Insert(0, dtTScomponent); this.toolStrip1.AutoSize = true; //string[] words = { "cherry", "apple", "blueberry" }; //int shortestWordLength = words.Min(w => w.Length); //int shortestWordLength = words.Min(w => w.Length); //for (int i = 0; i < (words.Select(item => item.Substring(0, 1)).Count); i ) //{ // Console.WriteLine(words.Select(item => item.Substring(0, 1))[i]); //} } private void Form1_Load(object sender, EventArgs e) { cmb.AutoCompleteSource = AutoCompleteSource.ListItems; cmb.AutoCompleteMode = AutoCompleteMode.Suggest; this.dropDownTree1.TVOriginal = this.treeView1; string temp = GetID("1"); int i = 0; } private string GetID(string strName) { string strRet = string.Empty; int Start = strName.IndexOf('('); int end = strName.IndexOf(')'); if (Start == -1 || end == -1) { return string.Empty; } strName.Substring(Start 1, end - Start - 1); return strRet; } private void textBox1_TextChanged(object sender, EventArgs e) { this.cmb.DroppedDown = true; System.Collections.ArrayList myLst = new System.Collections.ArrayList(); // myLst = CBaseFunc.GetName(textBox1.Text.Trim()); foreach (string m in myLst) { cmb.AutoCompleteCustomSource.Add(m); } //设置autocopletesource 和 autocompletemode属性即可 } } public class CBaseFunc { public static System.Collections.ArrayList GetName(string strname) { //树形结构 ArrayList list = new ArrayList(); list.Add("1"); list.Add("2"); return list; } } }