我在我的應用程序中有兩個不同的列表。每個用於組合框和列表框。我正在使用下面的可重複使用的代碼插入控件中的項目。現在,我使用了兩種不同的功能。是否有組合框和列表框的一般類,以便我可以在單個函數中完成我的工作?尋求組合框和列表框的一般類以減少代碼
public void AddItemsComboBox(ComboBox combobox, List<string> list)
{
foreach (string s in list)
{
if (!combobox.Items.Contains(s))
{
combobox.Items.Add(s);
}
}
}
public void AddItemsListBox(ListBox listbox, List<string> list)
{
foreach (string s in list)
{
if (!listbox.Items.Contains(s))
{
listbox.Items.Add(s);
}
}
}
你有什麼錯誤? –
@MANISHKUMARCHOUDHARY我沒有得到任何錯誤..我只是想減少我的代碼在一個單一的功能 –