Hello I read about Layouts but didn\'t get which one to use for my application. I want to add image to JPanel and place JLabel on op right corner just below the title bar.
Make sure you have
panel.setLayout(null);
if you wish to position the components yourself.
But identifying and using a layout manager that would fit your needs would make things easier as the complexity of your application grows.