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
'C# > Winform' 카테고리의 다른 글
C# / Winform TreeView TreeView의 항목을 체크박스로 변경 및 체크된 항목 삭제하기. (0) | 2019.04.21 |
---|---|
C# / Winform TreeView TreeView의 노드를 추가, 삭제, 전체 삭제하기. (0) | 2019.04.21 |
DB에서의 NULL과 C# 에서의 NULL의 차이 (0) | 2019.04.07 |
string.empty나 null 값이나 SQlite에는 어떤 값으로 들어갈까? (0) | 2019.04.03 |
C# DataGridView에 TextBox, ComboBox 그리고 DateTimePicker를 이용하여 데이터 넣기 예제 (0) | 2019.03.19 |
댓글