C# 콤보박스에 목록 추가 및 제거하는 방법  


this.comboBox.Items.Add("추가할 내용");

this.comboBox.Items.Remove("제거할 내용");

+ Recent posts