是否可以使用坐标定位JButton?

时间:2016-02-15 03:07:13

标签: java jframe jpanel jbutton

我一直试图定位JButton,但遇到了很多麻烦。我需要他们去一个非常精确的位置,但不知道如何实现这一目标。我见过一个名为FlowLayout的东西,但我对它很困惑。几天前我问了另一个关于如何定位JButton的问题,他们给了我这个固定代码:

import java.awt.Dimension;
import javax.swing.JButton;
import javax.swing.JFrame;

public class Frame extends JFrame
{
private JButton button1;
private JButton button2;

public Frame()
{
    button1 = new JButton("Hello button1");
    button2 = new JButton("Hello button2");
    button2.setPreferredSize(new Dimension(100,100));
    button1.setPreferredSize(new Dimension(100,100));
    add(button2);
    add(button1);
}

}

import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class Panel extends JPanel
{
public static void main(String args [])
{
    Frame frame = new Frame();
    frame.setLayout(new FlowLayout());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500, 500);
    frame.setVisible(true);
}
}

1 个答案:

答案 0 :(得分:1)

首先,不要在左到右的流程中使用 FlowLayout() 类FlowLayout组件,使布局(null)。

最后按钮您可以使用此

type