Java编程问题: JLabel中添加了多个按钮,编写一个鼠标转移事件移动按钮
在一个JLabel中我添加了多个按钮BUTTON,怎么编写一个鼠标转移事件,使得点击选中不同的按钮都能随着鼠标移动到指定位置呢,比如我点击BUTTON1,然后鼠标移动到J...
在一个JLabel中我添加了多个按钮BUTTON,怎么编写一个鼠标转移事件,使得点击选中不同的按钮都能随着鼠标移动到指定位置呢,比如我点击BUTTON1, 然后鼠标移动到JLabel另个地方,再单击它停止该响应(不点击不响应),然后我点击BUTTON2,同样可以产生如上的跟随鼠标移动的效果,谢谢!!!
public void mousePressed(MouseEvent e) {
e = SwingUtilities.convertMouseEvent(this,e,button1);//转移鼠标事件随机转移到一个组件。
if(e.getSource()==button1)
{
int x = e.getX();
int y = e.getY();
button1.setLocation(x, y);
repaint();
}
}
这样编写了怎么按钮不跟随移动呢...望高手赐教!!谢谢!!
BUTTON1的响应具体是这样,鼠标单击BUTTON1,然后鼠标移至JLabel都其他位置,鼠标单击BUTTON1移至该问题,再单击BUTTON1停止响应。
如果再单击BUTTON1,重复上诉过程。。。
BUTTON2,BUTTON3同上述事件.. 展开
public void mousePressed(MouseEvent e) {
e = SwingUtilities.convertMouseEvent(this,e,button1);//转移鼠标事件随机转移到一个组件。
if(e.getSource()==button1)
{
int x = e.getX();
int y = e.getY();
button1.setLocation(x, y);
repaint();
}
}
这样编写了怎么按钮不跟随移动呢...望高手赐教!!谢谢!!
BUTTON1的响应具体是这样,鼠标单击BUTTON1,然后鼠标移至JLabel都其他位置,鼠标单击BUTTON1移至该问题,再单击BUTTON1停止响应。
如果再单击BUTTON1,重复上诉过程。。。
BUTTON2,BUTTON3同上述事件.. 展开
展开全部
package c;
import java.awt.BorderLayout;
public class a extends JFrame {
private JPanel contentPane;
private boolean isOn=false;//判断鼠标是否按过
private JButton button;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
a frame = new a();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public a() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
final JLabel label = new JLabel("New label");
label.setBounds(0, 0, 430, 257);
label.setLayout(null);
button = new JButton("New button");
button.setBounds(0, 0, 43, 25);
label.addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseMoved(MouseEvent arg0) {
if(isOn==true) {button.setLocation(arg0.getX(), arg0.getY());
label.updateUI();
repaint();
}
}
});
button.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent arg0) {
isOn=isOn==false?true:false;
}
});
label.add(button);
contentPane.add(label);
}
}
这里只实现了一个按钮,不过不管多少个其实都是一样的,lz可以照着样子自己添加,不过注意多一个按钮就要多一个isOn和相关的判断。
如果还不明白的话hi我
import java.awt.BorderLayout;
public class a extends JFrame {
private JPanel contentPane;
private boolean isOn=false;//判断鼠标是否按过
private JButton button;
/**
* Launch the application.
*/
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
a frame = new a();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the frame.
*/
public a() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);
final JLabel label = new JLabel("New label");
label.setBounds(0, 0, 430, 257);
label.setLayout(null);
button = new JButton("New button");
button.setBounds(0, 0, 43, 25);
label.addMouseMotionListener(new MouseMotionAdapter() {
@Override
public void mouseMoved(MouseEvent arg0) {
if(isOn==true) {button.setLocation(arg0.getX(), arg0.getY());
label.updateUI();
repaint();
}
}
});
button.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent arg0) {
isOn=isOn==false?true:false;
}
});
label.add(button);
contentPane.add(label);
}
}
这里只实现了一个按钮,不过不管多少个其实都是一样的,lz可以照着样子自己添加,不过注意多一个按钮就要多一个isOn和相关的判断。
如果还不明白的话hi我
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询