我已经完成了拖放工作。我只需要知道有没有办法确定拖动项目来自哪个列表框?。
谢谢,
答案 0 :(得分:0)
尝试使用此功能,我认为这不是最佳解决方案,但它应该可行
foreach (ListBox _LB in this.Controls.OfType<ListBox>())
{
if(_LB.Items.Contains(listBox1.SelectedItem))
{
MessageBox.Show(_LB.Name);
}
}