오후
private void button1_Click(object sender, EventArgs e)
{
if (txb.Text == "")
{
MessageBox.Show("리스트를 작성해주세요");
} else
{
listBox1.Items.Add(txb.Text);
txb.Text="";
}
}
private void button2_Click(object sender, EventArgs e)
{
int sel = listBox1.SelectedIndex;
if(txb.Text == "")
{
MessageBox.Show("수정하실 내용을 적어주세요");
}else
{
listBox1.Items[sel] = txb.Text;
txb.Text = "";
}
}
private void button3_Click(object sender, EventArgs e)
{
int sel = listBox1.SelectedIndex;
if (sel < 0)
{
MessageBox.Show("삭제할 리스트를 클릭해주세요");
} else
{
listBox1.Items.RemoveAt(sel);
}
}
}
결과물
728x90
'오늘의 코딩' 카테고리의 다른 글
1.20 C# Array (0) | 2022.01.20 |
---|---|
1.19 C# String (0) | 2022.01.19 |
C# 레이싱 게임 만들기(클론) (0) | 2022.01.18 |
인프런 무료강의! (0) | 2022.01.08 |
TypeScript (0) | 2021.12.29 |