JPanel的边框Border picBorder = BorderFactory.createTitledBorder("图片展示"); picPanel.setBorder(picBorder);
当然还有方法重载,可以设颜色。
setBorder(new TitledBorder(null, "标题", TitledBorder.DEFAULT_JUSTIFICATION, TitledBorder.DEFAULT_POSITION, null, Color.BLUE)); TitledBorder(Border border, String title, int titleJustification, int titlePosition, Font titleFont, Color titleColor)用指定的边框、标题、标题对齐方式、标题位置、标题字体和标题颜色创建 TitledBorder 实例import java.awt.Color; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.border.TitledBorder; public class ColorTest extends JFrame { private static final long serialVersionUID = 1L; /** * Launch the application * @param args */ public static void main(String args[]) { try { ColorTest frame = new ColorTest(); frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } /** * Create the frame */ public ColorTest() { super(); getContentPane().setLayout(null); setBounds(100, 100, 500, 375); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final JPanel panel = new JPanel(); panel.setBorder(new TitledBorder(null, "标题", TitledBorder.DEFAULT_JUSTIFICATION, TitledBorder.DEFAULT_POSITION, null, Color.BLUE)); panel.setLayout(null); panel.setBounds(103, 45, 274, 174); getContentPane().add(panel); final JButton button = new JButton(); button.setBounds(84, 74, 106, 28); button.setText("New JButton"); panel.add(button); // } }
今天的文章jpanel设置标题_tablelayoutpanel「建议收藏」分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/69088.html
jpanel设置标题_tablelayoutpanel「建议收藏」
jpanel设置标题_tablelayoutpanel「建议收藏」JPanel的边框BorderpicBorder=BorderFactory.createTitledBorder(“图片展示”);picPanel.setBorder(picBorder);当然
赞 (0)