当我在程序中按下按钮时,我想将 JFrame 设置为半尺寸
因此,当您单击按钮时,您可以访问该按钮。然后你可以使用:
SwingUtilities.windowForComponent( theButton );
获取对框架的引用。
因此,现在当您为 Timer 创建 ActionListener 时,您可以将 Window 作为 ActionListener 的参数传入。
编辑:
mre 的建议简单明了,在许多情况下都易于使用(在这种情况下可能是更好的解决方案)。
我的建议有点复杂,但它向您介绍了 SwingUtilities 方法,该方法最终将允许您编写更多可重用的代码,这些代码可能被您可能创建的任何框架或对话框使用。
一个简单的例子是这样的:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class AnimationSSCCE extends JPanel
{
public AnimationSSCCE()
{
JButton button = new JButton("Start Animation");
button.addActionListener( new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
JButton button = (JButton)e.getSource();
WindowAnimation wa = new WindowAnimation(
SwingUtilities.windowForComponent(button) );
}
});
add( button );
}
class WindowAnimation implements ActionListener
{
private Window window;
private Timer timer;
public WindowAnimation(Window window)
{
this.window = window;
timer = new Timer(20, this);
timer.start();
}
@Override
public void actionPerformed(ActionEvent e)
{
window.setSize(window.getWidth() - 5, window.getHeight() - 5);
// System.out.println( window.getBounds() );
}
}
private static void createAndShowUI()
{
JFrame frame = new JFrame("AnimationSSCCE");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add( new AnimationSSCCE() );
frame.setSize(500, 400);
frame.setLocationRelativeTo( null );
frame.setVisible( true );
}
public static void main(String[] args)
{
EventQueue.invokeLater(new Runnable()
{
public void run()
{
createAndShowUI();
}
});
}
}
当然,当窗口达到某个最小大小时,您会希望停止计时器。我将把代码留给你。