본문 바로가기
C#/Winform

C# / Winform TreeView TreeView 생성하기.

by HyunS_ 2019. 4. 21.

Winform에 있는 TreeView 컨트롤을 생성합니다.

 

	#region Form1()

		/// <summary>
		/// 생성자 입니다.
		/// </summary>
		public Form1()
		{
			InitializeComponent();

			CreateTreeView();
		}

		#endregion

		#region CreateTreeView()

		/// <summary>
		/// 트리뷰를 생성합니다.
		/// </summary>
		private void CreateTreeView()
		{
			this.exampleTreeView.BeginUpdate();

			this.exampleTreeView.Nodes.Add("가");

			this.exampleTreeView.Nodes[0].Nodes.Add("가-1");

			this.exampleTreeView.Nodes[0].Nodes.Add("가-2");
			this.exampleTreeView.Nodes[0].Nodes[1].Nodes.Add("가-1-1");
			this.exampleTreeView.Nodes[0].Nodes[1].Nodes[0].Nodes.Add("가-1-1-1");
			this.exampleTreeView.EndUpdate();

		}

	#endregion

 

 

 

728x90

댓글