中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C#中怎么操作TreeView組件

發布時間:2021-07-07 17:33:50 來源:億速云 閱讀:191 作者:Leah 欄目:編程語言

C#中怎么操作TreeView組件,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

C#編寫操作TreeView組件的例子:

下面是C#編寫操作TreeView組件的例子,在這個例子中,結合以上介紹的常用方法和一般方法,基本覆蓋來TreeView組件的一些最常用的操作。譬如可以靈活的程序中的TreeView組件中,進行加入子節點、兄弟節點、刪除節點、折疊、展開等操作。其中前三種基本操作是通過程序中彈出菜單中的功能來實現的,后面操作是通過程序中的按鈕來實現的。下面是此程序的代碼節略(TreeView.cs):

  1. using System ;  

  2. using System.Drawing ;  

  3. using System.Collections ;  

  4. using System.ComponentModel ;  

  5. using System.Windows.Forms ;  

  6. using System.Data ;  

  7. namespace 全面掌握TreeView組件的使用方法  

  8. {  

  9. /// Form1 的摘要說明。  

  10. public class Form1 : Form  

  11. {  

  12. private TreeView treeView1 ;  

  13. private Button button1 ;  

  14. private Button button2 ;  

  15. private Button button3 ;  

  16. private MenuItem menuItem2 ;  

  17. private MenuItem menuItem3 ;  

  18. private MenuItem menuItem4 ;  

  19. private ContextMenu contextMenu1 ;  

  20. private TextBox textBox1 ;  

  21. private Label label1 ;  

  22. /// 必需的設計器變量。  

  23. private System.ComponentModel.Container components = null ;  

  24. public Form1 ( )  

  25. {  

  26. //初始化窗體中的組件  

  27. InitializeComponent ( ) ;  

  28. }  

  29. /// 清理所有正在使用的資源。  

  30. protected override void Dispose ( bool disposing )  

  31. {  

  32. if ( disposing )  

  33. {  

  34. if ( components != null )  

  35. {  

  36. components.Dispose ( ) ;  

  37. }  

  38. }  

  39. base.Dispose ( disposing ) ;  

  40. }  

  41. private void InitializeComponent ( )  

  42. {  

  43.  //初始化代碼(略)  

  44. }  

  45. [ STAThread ]  

  46. static void Main ( )  

  47. {  

  48. Application.Run ( new Form1 ( ) ) ;  

  49. }  

  50. private void AddChildNode ( )  

  51. {  

  52. //首先判斷是否選定組件中的位置  

  53. if ( treeView1.SelectedNode == null )  

  54. {  

  55. MessageBox.Show ( "請選擇一個節點" , "提示信息" , 
    MessageBoxButtons.OK , MessageBoxIcon.Information ) ;  

  56. }  

  57. else  

  58. {  

  59. if ( textBox1.Text != "" )  

  60. {  

  61. //創建一個節點對象,并初始化  

  62. TreeNode tmp ;  

  63. tmp = new TreeNode ( textBox1.Text ) ;  

  64. //在TreeView組件中加入子節點  

  65. treeView1.SelectedNode.Nodes.Add ( tmp ) ;  

  66. treeView1.SelectedNode = tmp ;  

  67. treeView1.ExpandAll ( ) ;  

  68. }  

  69. else  

  70. {  

  71. MessageBox.Show ( "TextBox組件必須填入節點名稱!" , "提示信息" , 
    MessageBoxButtons.OK , MessageBoxIcon.Information ) ;  

  72. return ;  

  73. }  

  74. }  

  75. }  

  76. private void AddParent ( )  

  77. {  

  78. //首先判斷是否選定組件中節點的位置  

  79. if ( treeView1.SelectedNode == null )  

  80. {  

  81. MessageBox.Show ( "請選擇一個節點" , "提示信息" , 
    MessageBoxButtons.OK , MessageBoxIcon.Information ) ;  

  82. }  

  83. else  

  84. {  

  85. if ( textBox1.Text != "" )  

  86. {  

  87. //創建一個節點對象,并初始化  

  88. TreeNode tmp ;  

  89. tmp = new TreeNode ( textBox1.Text ) ;  

  90. //在TreeView組件中加入兄弟節點  

  91. treeView1.SelectedNode.Parent.Nodes.Add ( tmp ) ;  

  92. treeView1.ExpandAll ( ) ;  

  93. }  

  94. else  

  95. {  

  96. MessageBox.Show ( "TextBox組件必須填入節點名稱!" , "提示信息" , 
    MessageBoxButtons.OK , MessageBoxIcon.Information ) ;  

  97. return ;  

  98. }  

  99. }  

  100. TreeNode tnode = new TreeNode ( textBox1.Text ) ;  

  101. }  

  102. private void treeView1_MouseDown ( object sender , MouseEventArgs e )  

  103. {  

  104. if ( e.Button == MouseButtons.Right )  

  105. contextMenu1.Show ( this , new Point ( e.X , e.Y ) ) ;  

  106. }  

  107. private void button1_Click ( object sender , System.EventArgs e )  

  108. {  

  109. treeView1.SelectedNode.Expand ( ) ;  

  110. }  

  111. private void menuItem2_Click ( object sender , System.EventArgs e )  

  112. {  

  113. AddChildNode ( ) ;  

  114. }  

  115. private void menuItem3_Click ( object sender , System.EventArgs e )  

  116. {  

  117. AddParent ( ) ;  

  118. }  

  119. private void menuItem4_Click ( object sender , System.EventArgs e )  

  120. {  

  121. //判斷選定的節點是否存在下一級節點  

  122. if ( treeView1.SelectedNode.Nodes.Count == 0 )  

  123. //刪除節點  

  124. treeView1.SelectedNode.Remove ( ) ;  

  125. else  

  126. MessageBox.Show ( "請先刪除此節點中的子節點!" , "提示信息" , 
    MessageBoxButtons.OK , MessageBoxIcon.Information ) ;  

  127. }  

  128. private void button2_Click ( object sender , System.EventArgs e )  

  129. {  

  130. //定位根節點  

  131. treeView1treeView1.SelectedNode = treeView1.Nodes [ 0 ] ;  

  132. //展開組件中的所有節點  

  133. treeView1.SelectedNode.ExpandAll ( ) ;  

  134. }  

  135. private void button3_Click ( object sender , System.EventArgs e )  

  136. {  

  137. //定位根節點  

  138. treeView1treeView1.SelectedNode = treeView1.Nodes [ 0 ] ;  

  139. //折疊組件中所有節點  

  140. treeView1.SelectedNode.Collapse ( ) ;  

  141. }  

  142. }  

  143. }  

關于C#中怎么操作TreeView組件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

来安县| 大冶市| 水城县| 龙游县| 百色市| 灵川县| 齐河县| 石楼县| 南充市| 社会| 桐乡市| 岗巴县| 武邑县| 旺苍县| 黑山县| 广州市| 延川县| 仲巴县| 五峰| 襄汾县| 自贡市| 珠海市| 水城县| 澄江县| 青神县| 大竹县| 晋江市| 塘沽区| 台南市| 忻城县| 明水县| 庆阳市| 渑池县| 伊金霍洛旗| 河北区| 邵阳县| 赣榆县| 惠州市| 巴楚县| 张家港市| 平乡县|