开发者

java border gui

I am not goo开发者_如何转开发d with GUIs or User Interfaces in Java.

Would a Border or JPanel be good for something like the image below?

java border gui

So, what would be the best option for me? Thank you.


Read the section from the Swing tutorial on Using Layout Managers. You can easily nest panels to get the desired effect.

Maybe start with a BorderLayout. Then you can add a panel that uses a GridLayout, which contains all your image tiles, to the CENTER of the BorderLayout. Then you can add the scrollpane containing the text area to the SOUTH. Then you can create another panel to add to the EAST.

Be creative and experiment.


You can make 4 seperate panels for a border, using BorderLayout.NORTH,BorderLayout.EAST,BorderLayout.SOUTH,and BorderLayout.WEST, This is the easiest way in my opinion.

By the way, in the top right of your picture, where you wanted the information panel, you should put an information LABEL (JLabel) instead, because they hold text. JLabel topRight = new JLabel(); then set the text, position, etc.

p.s. to erase the borders around every tile (if you want to do so), use setBorderPainted(false).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜