RollRoll
RollRoll

Reputation: 8462

Java for UI windows applications

I'm .net developer and trying to study java.

I would like to know which kind of project ( on eclipse ) I can create Windows UI Applications like.

in Visual Studio this is very intuitive

any tips are welcome

Upvotes: 0

Views: 3432

Answers (1)

Jasonw
Jasonw

Reputation: 5064

As Andrew Thompson put it, there are a lot of choices in Java and so I would suggest you will probably want to start with the GUI introduction from the official documentation to get familiar yourself with the concept and terminology.

Then you can start to do the Java GUI tutorial (example swing) and I think this site is good on the tutorial. If you want your application to look and feel like what you have in Windows application, then take a look at this example code.

Last but not least, you will probably want to install this plugin from google to your eclipse as it assist very much during Java GUI development.

Upvotes: 1

Related Questions