有谁知道如何在两个不同的 wpf 窗口之间进行拖放?在 Window1 中检测拖动动作,
void textBoxName_IsMouseCapturedChanged(object sender, DependencyPropertyChangedEventArgs e)
{
if ((bool)e.NewValue == false)
return;
DataObject dataObj = null;
DragDropInAction = true;
TextBox tB = (TextBox)sender;
int Itemrow = -1;
if (tB != null)
{
Itemrow = Grid.GetRow(tB);
}
dataObj = new DataObject(Itemrow);
DragDrop.DoDragDrop(tB, dataObj, DragDropEffects.Move);
DragDropInAction = false;
}
但我不知道如何在另一个窗口中进行放置动作