当鼠标在应用程序窗口之外时,是否可以在从摇摆中拖动(我的意思是图像,而不是位置)时更改鼠标光标?

时间:2016-04-06 09:28:33

标签: java swing mouse-cursor mouse-pointer

我在multi-window java swing application支持之间drag&drop windows

我想全局更改mouse cursor ,即使它在application windows之间。

启动Component.setCursor()或主component dragwindow调用的最明显的解决方案不起作用。

1 个答案:

答案 0 :(得分:0)

然后我发现在没有使用原生的,依赖于平台的api的情况下这样做的方法是使用java Swing的DnD api,它允许你在拖动时设置自定义鼠标光标

import javax.swing.*;

import java.awt.Cursor;
import java.awt.datatransfer.StringSelection;
import java.awt.dnd.DnDConstants;
import java.awt.dnd.DragGestureListener;
import java.awt.dnd.DragSource;

public class DndExample extends JFrame {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> new DndExample());
    }

    public DndExample() {
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JLabel dragLabel = createDndLabel();
        getContentPane().add(dragLabel);
        pack();
        setVisible(true);
    }

    private JLabel createDndLabel() {
        JLabel label = new JLabel("Drag me, please");


        DragGestureListener dragGestureListener = (dragTrigger) -> {
            dragTrigger.startDrag(new Cursor(Cursor.HAND_CURSOR), new StringSelection(label.getText()));
        };

        DragSource dragSource = DragSource.getDefaultDragSource();
        dragSource.createDefaultDragGestureRecognizer(label, DnDConstants.ACTION_COPY, dragGestureListener);

        return label;
    }
}