본문 바로가기
프로그래밍/C#

[C#] ListBox를 사용해보자 (추가,삭제,Clear)

by JR2 2021. 3. 16.

 

 

요렇게 만들어보자

 

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace test
{
    public partial class Form1 : Form
    {
        private void Form1_Load(object sender, EventArgs e)
        {
        }
        
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            listBox1.Items.Add(textBox1.Text);
        }

        private void button2_Click(object sender, EventArgs e)
        {
            listBox1.Items.Remove(textBox2.Text);
        }

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

test.zip
0.18MB

 

너무너무 쉽다.

 

여러가지 기능들이 있는데, 공식문서인 MSDN을 참조하면 된다.

 

docs.microsoft.com/ko-kr/dotnet/desktop/winforms/controls/add-and-remove-items-from-a-wf-combobox?view=netframeworkdesktop-4.8

 

ComboBox, ListBox 또는 CheckedListBox 컨트롤에서 항목 추가 및 제거 - Windows Forms .NET Framework

데이터 바인딩을 사용 하지 않고 Windows Forms ComboBox, ListBox 및 CheckedListBox 컨트롤을 추가 하 고 제거 하는 방법에 대해 알아봅니다.

docs.microsoft.com

 

댓글