Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java GUI designing outline?

I made a program in C# and I was trying to port it over to java. The design of the GUI is this: http://img507.imageshack.us/img507/7728/34685005.png

The faded separator lines starting after Client Downloader passing through Version 1.0 and stopping before Client Downloader. Are those lines available in java? I'm using jFormDesigner and I'm unsure if those lines are there.

If they are available what are they called? Thanks.

like image 756
Kyle Avatar asked Sep 19 '26 00:09

Kyle


1 Answers

First, if you are trying something complex I would suggest not use a GUI building tool and instead code it by hand.

Look into a Title Border here: http://download.oracle.com/javase/tutorial/uiswing/components/border.html

It will give you the part on the top. You might need to create a custom version to get the "Version 1.0", text or there might already be a third party lib somewhere that has that capability.

like image 112
jzd Avatar answered Sep 20 '26 13:09

jzd