我的代码中有 2 个错误,不知道如何解决。
这是我的代码:
private void add_button_Click(object sender, EventArgs e)`
{
try
{
if (list_selected.Contains(List_selection.SelectedItem))
{
MessageBox.Show("Can't add the same type twice");
}
else
{
list_selected.Items.Add(List_selection.SelectedItem);
}
}
catch
{
{
MessageBox.Show("No type selected");
}
}
}
这些是错误:
错误 1
'System.Windows.Forms.Control.Contains(System.Windows.Forms.Control)' 的最佳重载方法匹配有一些无效参数
错误 2
参数 1:无法从 'object' 转换为 'System.Windows.Forms.Control' C:\Projects\flashloader2013\mainapplication\Form1.cs 467 44 Main
请帮我。]
List_selection
并且list_selected
是ListBoxes
。