본문 바로가기

프로그래밍/C#

[C#] ListBox 컨트롤 항목 추가 및 지우기

방법: ListBox 컨트롤 항목 추가 및 지우기

Visual Studio 2008

업데이트: 2007년 11월

이 예제에서는 button1을 클릭하면 ListBox 컨트롤에 Windows Forms TextBox 컨트롤의 내용을 추가하고 button2를 클릭하면 내용을 지웁니다.

private void button1_Click(object sender, System.EventArgs e)
{
    listBox1.Items.Add("Sally");
    listBox1.Items.Add("Craig");
}

private void button2_Click(object sender, System.EventArgs e)
{
    listBox1.Items.Clear();
}

이 예제에는 다음 사항이 필요합니다.

  • listBox1이라는 ListBox 컨트롤과 button1 및 button2라는 두 개의 단추가 있는 폼. button1_Click에 button1Click 이벤트 처리기를 추가하고 button2_Click에 button2Click 이벤트 처리기를 추가해야 합니다.


출처 : https://msdn.microsoft.com/ko-kr/library/ms228375(v=vs.90).aspx