1
在鞦韆環境中,我畫按鈕並設置動作在我的框架上移動。
當我的按鈕到達框架或按鈕的角落和框架的長度和寬度是相等的;做其他行動或類似的東西。
我的問題是我找不到任何組件來比較按鈕和幀的位置或長度和寬度。如何比較框架和按鈕的寬度和長度?
ActionListener al = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
x= x + 10 ;
y=y + 10 ;
jButtonMove.setLocation(x, y);
}
};
Timer t = new Timer(500 , al);
t.start();
如果(button.getWidth()+ button.locationX()
lummycoder
@ shved90 thnx作答覆。 –