13 Kasım 2017 Pazartesi

Swing BoxLayout Sınıfı

Giriş
Açıklaması şöyle.
The following layout managers are obsolete:

FlowLayout
GridLayout
CardLayout
BoxLayout
GridBagLayout
These layout managers are simplistic and they cannot fulfill requirements for a modern UI.
Bunun yerine şunlar kullanılabilir.
There are three layout managers that can do the job properly:

MigLayout
GroupLayout
FormLayout
Bir satır veya sütun oluşturmak için kullanılır.

constructor - satır
Şöyle yaparız. Panel'e eklenen her bileşen soldan sağa doğru gösterilir.
JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.LINE__AXIS));


Hiç yorum yok:

Yorum Gönder