JMenu ile JToolBar'ı Birbirinden Ayırmak
01-01-2015JMenu ile JToolBar'ı birbirinden ayırmak için MatterBorder kullanabiliriz:
JToolBar toolBar = new JToolBar(); toolBar.setBackground(new Color(234, 234, 234)); MatteBorder matteBorder = new MatteBorder(1, 0, 0, 0, new Color(174, 174, 174)); toolBar.setBorder(matteBorder);