| 1234567891011121314151617181920212223242526 |
- package panels;
- import java.awt.GridLayout;
- import javax.swing.JButton;
- import javax.swing.JLabel;
- import javax.swing.JPanel;
- public class Iconbar extends JPanel {
- public JButton irremote;
- public JLabel currentroute;
- public JLabel currentGridSize;
-
- public Iconbar(){
- currentGridSize = new JLabel();
- currentroute = new JLabel();
- irremote = new JButton("Afstandsbediening");
-
- this.setLayout(new GridLayout(0,5,10,10));
-
- this.add(irremote);
- this.add(currentroute);
- this.add(currentGridSize);
- }
-
- }
|