我有兴趣捕获一个拖放事件,该事件将从用户在 TreeView 中的某处拖动现有的 TreeNode 开始。当用户拖动 TreeNode 时,我有兴趣捕捉节点何时被拖动到两个树节点之间。当用户这样做时,我想在树节点之间显示一个哈希标记,以指定该节点是作为子节点还是作为兄弟节点被删除。此哈希标记将显示: - 在目标节点下方(表示源节点将作为目标节点的子节点删除或 - 在左侧目标节点下方(表示源节点将作为目标节点),之前或之后...
我使用 DragOver 事件取得了一些进展。我正在计算鼠标位置并在拖动鼠标时推导顶部和底部节点是什么。
int threshold = 8; //Joe(hack)
Point mouseLocation = mouseLocation = treeViewConditions.PointToClient(new Point(e.X, e.Y - threshold));
TreeNode topNode = treeViewConditions.GetNodeAt(mouseLocation);
mouseLocation = treeViewConditions.PointToClient(new Point(e.X + threshold, e.Y));
TreeNode bottomNode = treeViewConditions.GetNodeAt(mouseLocation);
if (topNode != null && bottomNode == null)
{
textBoxDescription.Text = "handling top node";
}
else if (topNode == null && bottomNode != null)
{
textBoxDescription.Text = "handling bottom node";
}
else if (topNode != null && bottomNode != null)
{
if (topNode != bottomNode)
{
textBoxDescription.Text = "between!";
}
else if (topNode == bottomNode)
{
}
}
然而,在这样做时,它只是感觉很脏。我想知道是否有人知道更好的方法来做到这一点。
提前致谢!