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

前端 未结 3 1348
生来不讨喜
生来不讨喜 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:21

    If you are using SWT than I think that org.eclipse.swt.widgets.Group is what you are looking for. It is a Composite (a block in HTML analogy) and it looks like a fieldset in HTML.

    I can't speak for AWT and SWING however.

提交回复
热议问题