Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はすでにドラッグアンドドロップがうまく機能しています。ドラッグされたアイテムがどのリストボックスからのものかを特定する方法はありますか?
ありがとう、
これを使用してみてください。最善の解決策ではないと思いますが、うまくいくはずです
foreach (ListBox _LB in this.Controls.OfType<ListBox>()) { if(_LB.Items.Contains(listBox1.SelectedItem)) { MessageBox.Show(_LB.Name); } }