gpt4 book ai didi

java - 如何获取JLabel[ ] [ ]中鼠标点击的标签索引?

转载 作者:行者123 更新时间:2023-12-02 09:42:26 24 4
gpt4 key购买 nike

我有一个 JLabel 组件的二维数组,我想获取鼠标在标签中单击的位置,如下所示。

Jlabel [x] [y] // I want this x & y

我该怎么做?

我已经尝试过了,但什么也没得到!

new MouseAdapter(){
public void mousePressed(MouseEvent e){
int a=e.getX();
int b=e.getY();
MainBoard.ML.label=MainBoard.disk1[a][b];
Color c=MainBoard.ML.label.getForeground();
if(color==1)
MainBoard.ML.label.setForeground(Color.black);
else
MainBoard.ML.label.setForeground(Color.white);
new Play(a,b,color);
new Player2(r);
MainBoard.disk1[a][b].addMouseListener(new ML1(a,b));
}
};

我想获取标签数组的 x 和 y 索引。

最佳答案

下面是用于定位您正在寻找的xy的未经测试和未编译的代码。
请注意,MouseEvent 类的方法 getX() 获取计算机屏幕上鼠标指针的位置,而不是数组中的 x。对于方法 getY() 也是如此。这就是为什么你什么也得不到的原因。

在下面的代码中,我将相同的 MouseListener 添加到所有 JLabel 中。

MouseEvent 包含鼠标单击的 JLabel 以及 MouseEvent 类的方法 getSource()返回它。然后,您需要迭代 JLabel 数组并查看哪一个与 MouseEvent 源匹配。

int rows = // number of rows in 2D array
int cols = // number of cols in 2D array
final JLabel[][] labels = new JLabel[rows][cols]
MouseListener ml = new MouseAdapter() {
public void mousePressed(MouseEvent me) {
Object src = me.getSource();
int x = -1;
int y = -1;
for (int i = 0; i < labels.length(); i++) {
for (int j = 0; j < labels[i].length; j++) {
if (src == labels[i][j]) {
x = i;
y = j;
break;
}
}
if (x >= 0) {
break;
}
}
if (x > 0) {
System.out.printf("JLabel[%d][%d] was clicked.%n", x, y);
}
else {
System.out.println("Could not find clicked label.");
}
}
}
for (int row = 0; row < rows; row++) {
for (int col = 0; col < cols; col++) {
labels[row][col] = new JLabel(row + "," + col);
labels[row][col].addMouseListener(ml);
}
}

关于java - 如何获取JLabel[ ] [ ]中鼠标点击的标签索引?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56967271/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com