這篇文章主要講解了“C#的WinForm怎么增加treeView1控件”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C#的WinForm怎么增加treeView1控件”吧!
創(chuàng)新互聯(lián)是專業(yè)的昆玉網(wǎng)站建設(shè)公司,昆玉接單;提供網(wǎng)站制作、網(wǎng)站設(shè)計,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行昆玉網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊,希望更多企業(yè)前來合作!
使用TreeNode的tag屬性放置編碼,TreeNode的Text屬性放置名稱,最簡單的示例如下——先添加兩個節(jié)點,然后處理AfterSelect事件:
using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace testtree { /// /// Form1 的摘要說明。 /// public class Form1 : System.Windows.Forms.Form { private System.Windows.Forms.TreeView treeView1; /// /// 必需的設(shè)計器變量。 /// private System.ComponentModel.Container components = null; public Form1() { // // Windows窗體設(shè)計器支持所必需的 // InitializeComponent(); // // TODO:在InitializeComponent調(diào)用后添加任何構(gòu)造函數(shù)代碼 // TreeNode tn = new TreeNode(); tn.Tag = "1001"; tn.Text = "hello"; TreeNode tn2 = new TreeNode(); tn2.Tag = "1002"; tn2.Text = "ok"; tn.Nodes.Add(tn2); treeView1.Nodes.Add(tn); } /// /// 清理所有正在使用的資源。 /// protected override void Dispose( bool disposing ) { if( disposing ) { if (components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows窗體設(shè)計器生成的代碼 /// ///設(shè)計器支持所需的方法-不要使用代碼編輯器修改 /// 此方法的內(nèi)容。 /// private void InitializeComponent() { this.treeView1 = new System.Windows.Forms.TreeView(); this.SuspendLayout(); // // treeView1控件 // this.treeView1.ImageIndex = -1; this.treeView1.Location = new System.Drawing.Point(16, 8); this.treeView1.Name = "treeView1"; this.treeView1.SelectedImageIndex = -1; this.treeView1.TabIndex = 0; this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(292, 266); this.Controls.Add(this.treeView1); this.Name = "Form1"; this.Text = "Form1"; this.ResumeLayout(false); } #endregion /// /// 應(yīng)用程序的主入口點。 /// [STAThread] static void Main() { Application.Run(new Form1()); } private void treeView1_AfterSelect(object sender, System.Windows.Forms.TreeViewEventArgs e) { string s = treeView1.SelectedNode.Tag.ToString(); string s2 = treeView1.SelectedNode.Text.ToString(); } } }
感謝各位的閱讀,以上就是“C#的WinForm怎么增加treeView1控件”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對C#的WinForm怎么增加treeView1控件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創(chuàng)新互聯(lián),小編將為大家推送更多相關(guān)知識點的文章,歡迎關(guān)注!