Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<ul> <li><p>use <a href="http://docs.oracle.com/javase/tutorial/uiswing/layout/card.html" rel="nofollow">Cardlayout</a> for wizard logics</p></li> <li><p>put <a href="http://docs.oracle.com/javase/tutorial/uiswing/components/label.html" rel="nofollow">JLabel(Configure ...., JLabel.CENTER)</a> to the <code>BorderLayout.NORTH</code></p></li> <li><p>put <a href="http://docs.oracle.com/javase/tutorial/uiswing/components/panel.html" rel="nofollow">JPanel</a> with <a href="http://docs.oracle.com/javase/tutorial/uiswing/components/button.html#jbutton" rel="nofollow">JButtons</a> to the BorderLayout.SOUTH</p></li> <li><p>put JPanel with <a href="http://docs.oracle.com/javase/tutorial/uiswing/layout/spring.html" rel="nofollow">SpringLayout</a>, <a href="http://docs.oracle.com/javase/tutorial/uiswing/layout/grid.html" rel="nofollow">GridLayout</a>, or <a href="http://docs.oracle.com/javase/tutorial/uiswing/layout/gridbag.html" rel="nofollow">GridBagLayout</a> to the <code>BorderLayout.CENTER</code></p></li> <li><p><a href="http://docs.oracle.com/javase/tutorial/uiswing/components/toplevel.html" rel="nofollow">Top-Level Container</a> have got implemened <a href="http://docs.oracle.com/javase/tutorial/uiswing/layout/border.html" rel="nofollow">BorderLayout</a> by default, then there no reason to re_define <code>BorderLayout</code></p></li> <li><p>above mentioned steps are called <code>NestedLayout</code></p></li> <li><p>alternative are put all <code>JComponents</code> by using <code>GridBagLayout</code>, <code>SpringLayout</code> or todays <code>MigLayout</code> to the one <code>JPanel</code>, but why bothering </p></li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload