zoukankan      html  css  js  c++  java
  • JAVA swing JLabel JButton标签文本文字内容的换行

    package hj.exam.fram;

    import javax.swing.*;

    public class test extends JFrame {
    private JButton button;
    private JLabel label;

    public test() {
    JPanel pane = new JPanel();
    button = new JButton("<html>第一行<br>第二行</html>");
    label = new JLabel("<html>第1行<br>第2行</html>");
    pane.add(button);
    pane.add(label);
    setContentPane(pane);
    setLocationRelativeTo(null);//窗体居中
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // 调整此窗口的大小,以适合其子组件的首选大小和布局。
    // 如果该窗口和/或其所有者还不可显示,则在计算首选
    // 大小之前都将变得可显示。在计算首选大小之后,将会验证该窗口。
    pack();
    setVisible(true);
    }

    public static void main(String args[]) {
    test t = new test();
    }
    }

  • 相关阅读:
    Adobe Flash Player 设置鼠标点不到允许或者拒绝!
    bzoj2096
    bzoj2789
    LA3353
    poj2594
    bzoj2427
    bzoj1076
    bzoj2818
    bzoj3668
    bzoj2006
  • 原文地址:https://www.cnblogs.com/jianming-chan/p/3265388.html
Copyright © 2011-2022 走看看