dragwindowlistener.java
来自「mp3播放功能」· Java 代码 · 共 19 行
JAVA
19 行
package WindowType;
import java.util.EventListener;
import WindowType.DragWindowEvent;;
/**
* Interface that can deal with the event when window is dragged.
* @author DuXiaojing
*
*/
public interface DragWindowListener extends EventListener{
/**
* Invoked when dragging the window
* @param we DragWindowEvent object
* @see WindowType.DragWindowEvent
*/
public void windowDragging(DragWindowEvent we);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?