📄 gridevent.java
字号:
package org.nebula.cwt.grid;
import java.awt.event.MouseEvent;
import java.awt.Point;
public class GridEvent {
public int col, row;
public int xOffset, yOffset;
public MouseEvent evt;
public GridEvent(int col,int row, int xOffset, int yOffset, MouseEvent evt) {
this.col = col;
this.row = row;
this.xOffset = xOffset;
this.yOffset = yOffset;
this.evt = evt;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -