我正在寻找一种方法来确定在 DragDrop 事件发生后拖动的 toolStrip 中的哪个项目,我要做的就是为工具条中的每个项目制作一个具有不同案例的 switch case,但我似乎找不到比较它们的方法。
更新:短代码示例
private void toolStrip1_DragDrop(object sender, DragEventArgs e)
{
//Here I want something like a DoDragDrop() and send the specific item from the
//toolstrip..
}
private void panel1_MouseUp(object sender, MouseEventArgs e)
{
//And here some way to determine which of the items was dragged
//(I'm not completely sure if I need a mouseUp event though..)
}
希望更容易得到我想要做的事情。