我执行拖放操作,并希望在ismouseover属性为true时触发图像元素以更改其来源。
现在我意识到拖放操作工作时ismouseover属性不会更新。

拖放处于 Activity 状态时,还有其他方法可以在鼠标悬停时更改图像源吗?

最佳答案

我遇到了同样的问题,最终在我的自定义控件中创建了一个名为IsDragMouseOver的新 bool 值,并在我的控件模板中引用了它。

在控件后面的代码中,我添加了以下内容:

protected override void OnDragEnter(DragEventArgs e)
    {
        base.OnDragEnter(e);
        IsDragMouseOver = true;
    }

    protected override void OnDragLeave(DragEventArgs e)
    {
        base.OnDragLeave(e);
        IsDragMouseOver = false;
    }

    protected override void OnDragOver(DragEventArgs e)
    {
        base.OnDragOver(e);
        IsDragMouseOver = true;
    }

    protected override void OnDrop(DragEventArgs e)
    {
        base.OnDrop(e);
        IsDragMouseOver = false;
    }

希望能有所帮助。

10-07 14:23