[C#] 20일차 - 141. 콤보박스를 이용한 식당 리스트의 추가, 삭제C#/C#200제2021. 2. 22. 19:36
Table of Contents
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;
namespace A141_ComboBox
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
ComboBox cb = sender as ComboBox;
lblRestaurant.Text = "이번 주 모임장소는 : " + cb.SelectedIndex.ToString();
}
private void btnAdd_Click(object sender, EventArgs e)
{
// 콤보박스는 값을 입력받을 수 있다.
if (comboBox1.Text != "")
{
comboBox1.Items.Add(comboBox1.Text); // 콤보박스 Item Add
lblRestaurant.Text = comboBox1.Text + "Added!";
}
}
private void btnDelete_Click(object sender, EventArgs e)
{
if(comboBox1.SelectedIndex >= 0)
{
lblRestaurant.Text = comboBox1.SelectedItem.ToString() + " Deleted!";
comboBox1.Items.Remove(comboBox1.SelectedItem); // 콤보박스 Item Delete
}
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 20일차 - 143. 콤보박스를 이용한 학점계산기 (4) | 2021.02.22 |
---|---|
[C#] 20일차 - 142. CheckedListBox를 이용한 희망 여행지 리스트 (0) | 2021.02.22 |
[C#] 19일차 - 140. 리스트박스에 항목을 표시하는 세 가지 방법 (0) | 2021.02.19 |
[C#] 19일차 - 139. 스크롤바로 RGB 컬러 조정 (0) | 2021.02.19 |
[C#] 19일차 - 138. MaskedTextBox (0) | 2021.02.19 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!