Is there a user interface design tutorial?

I was looking through a tutorial that describes the basic user interface design (e.g. colors, effects, etc.). As I develop my own component, I was hoping there would be some kind of tutorial that could help me make the right design choices (aesthetically speaking ...).

For example, this tutorial should help me answer some of the following questions:

  • What should the button look like when pressed?
  • What should the button look like when it freezes?

I marked this as a Java Swing dependent question, as that is the language I will use. And yes, I used the existing behavior of the component as a guide, but I would like something more final.

Note: this tutorial does not have to be Java Swing-specific!

Something like this .

+4
source share
2 answers

The Java Look and Feel Design Guide has some information about button design:

http://oracle.com/technetwork/java/hig-142056.html#52291 (thanks to Olivier for providing the updated link)

+1
source

You should look at the user interface templates and select the appropriate one (even on the website template and flash memory), and then configure the swing components according to this view.

if you want your gui to look a bit more updated try swingx

check their interface, it looks pretty good.

0
source

Source: https://habr.com/ru/post/1385328/


All Articles