所以这就是我到目前为止所做的,我将增加更多,但这里是我所谓的骨架。我正在做的事情是决定我应该使用什么布局,如果我应该自己制作,我将如何去做呢?
关于我的创建的一些信息将是有用的:我将在GUI的最左侧区域的右侧有多个标签和输入空间,在右下方将有一个按钮,并且在右上方会有一个文本框,可以不断地传递机器人正在做的事情的信息。
请帮我找一个我可以使用的布局并告诉我如何轻松实现它(仅供参考我使用的是Ubuntu)。
import java.awt.*;
import javax.swing.*;
public class dogedice {
public static void createWindow() {
JFrame frame = new JFrame("Framework Michael+Dalin");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JLabel textLabel = new JLabel("Welcome to the framework of our future bots!");
JLabel textLabel2 = new JLabel("Username");
JTextField textField = new JTextField("Username");
JPanel panel = new JPanel();// Any new parts must be added here!
panel.add(textLabel);
panel.add(textField);
panel.add(textLabel2);
textLabel.setPreferredSize(new Dimension(800, 750));
frame.add(panel);
frame.setLocationRelativeTo(null);
frame.pack();
frame.setVisible(true);
}
public static void main(String[] args) {
createWindow();
}
}
答案 0 :(得分:4)
首先看看the Visual Guide to Layout Managers。然后,您会注意到,只需一个布局管理器或所有组件的几个组合,您就可以通过一点创造力实现任何所需的布局。
根据您的说明,您可以在每个象限中使用BorderLayout
JPanel
。
FlowLayout
可以使用右对齐。GridBagLayout
创建两列,一列用于标记(我假设为JLabel
),另一列用于输入空格(JTextField
)。JTextArea
中封装的JScrollPanel
)以下是一个例子:
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import java.awt.*;
public class LayoutExample1 extends JFrame {
private static final long serialVersionUID = 1L;
private JPanel contentPane;
private JTextField textField;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
LayoutExample1 frame = new LayoutExample1();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public LayoutExample1() {
setTitle("Title of GUI");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
contentPane.setLayout(new BorderLayout(0, 0));
setContentPane(contentPane);
JPanel panel = new JPanel();
contentPane.add(panel, BorderLayout.WEST);
GridBagLayout gbl_panel = new GridBagLayout();
gbl_panel.columnWidths = new int[]{0, 0};
gbl_panel.rowHeights = new int[]{0, 0};
gbl_panel.columnWeights = new double[]{0.0, 1.0};
gbl_panel.rowWeights = new double[]{0.0, Double.MIN_VALUE};
panel.setLayout(gbl_panel);
JLabel lblTag = new JLabel("Tag 1");
GridBagConstraints gbc_lblTag = new GridBagConstraints();
gbc_lblTag.insets = new Insets(0, 0, 0, 5);
gbc_lblTag.anchor = GridBagConstraints.EAST;
gbc_lblTag.gridx = 0;
gbc_lblTag.gridy = 0;
panel.add(lblTag, gbc_lblTag);
textField = new JTextField();
GridBagConstraints gbc_textField = new GridBagConstraints();
gbc_textField.fill = GridBagConstraints.HORIZONTAL;
gbc_textField.gridx = 1;
gbc_textField.gridy = 0;
panel.add(textField, gbc_textField);
textField.setColumns(10);
JPanel panel_1 = new JPanel();
contentPane.add(panel_1, BorderLayout.SOUTH);
panel_1.setLayout(new FlowLayout(FlowLayout.RIGHT, 5, 5));
JButton btnConfirm = new JButton("Confirm");
panel_1.add(btnConfirm);
JScrollPane scrollPane = new JScrollPane();
contentPane.add(scrollPane, BorderLayout.CENTER);
JTextArea textArea = new JTextArea("I am a bot and I will tell you what I am doing to your systems!");
textArea.setColumns(20);
scrollPane.setViewportView(textArea);
pack();
}
}
答案 1 :(得分:0)
如果UI非常简单,请将所有标记和输入放在带有GridLayout的JPanel中,并将其放在带有BorderLayout的mainPanel的中心。
如果您对更复杂的布局感兴趣并希望了解如何使用,我建议http://miglayout.com/