0

看着屏幕简短我如何添加步骤和选择项目

是 jabel 还是面板中的标题

图片

4

1 回答 1

3

这将通过利用BorderSwing 中可用的 API 来完成。仔细查看如何使用边框了解更多详细信息。

作为一个非常粗略的例子......

在此处输入图像描述

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.border.CompoundBorder;
import javax.swing.border.EmptyBorder;
import javax.swing.border.MatteBorder;

public class PanelTitles {

    public static void main(String[] args) {
        new PanelTitles();
    }

    public PanelTitles() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new TitlePane(), BorderLayout.NORTH);
                frame.add(new JLabel("This is the content"));
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TitlePane extends JPanel {

        public TitlePane() {
            setLayout(new BorderLayout());            
            setBorder(new CompoundBorder(new EmptyBorder(4, 4, 4, 4), new MatteBorder(0, 0, 1, 0, Color.BLACK)));
            JLabel label = new JLabel("This is a title");
            label.setFont(label.getFont().deriveFont(Font.BOLD));
            add(label);
        }        
    }        
}
于 2013-10-04T04:09:10.827 回答