Is there an equivalent in Java for fieldset (HTML)?

前端 未结 3 1349
生来不讨喜
生来不讨喜 2021-02-13 04:30

Is there an element in Java (i.e. Swing/AWT or SWT) that is equivalent to the HTML element fieldset?

3条回答
  •  说谎
    说谎 (楼主)
    2021-02-13 05:25

    Create a Panel, create a titled border and you will be able to put inside all your field components.

    JPanel panel = new JPanel();
    panel.add(new JLabel("foo"));
    panel.setBorder(BorderFactory.createTitledBorder("bar")); 
    

提交回复
热议问题