Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best language for quickly creating user interfaces without drag and drop? [closed]

I'm a blind college student who is taking an introduction to programming class that focuses on user interface design. The class is using Processing, which is completely inaccessible. I'm looking for a language that will allow me to create GUI's without drag and drop and hopefully be smart enough to do most of the layout without forcing me to specify control positions in pixels.

I know Perl, Java, C/C++, c#, and HTML. I was considering creating HTA applications. My only requirements are that the language must run under MS Windows, and must not use SWING or GTK as the underlying toolkit.

like image 489
Jared Avatar asked Jan 20 '09 03:01

Jared


1 Answers

I would say that xaml would be a good choice:

  • Pixel manipulation is not needed
  • Item functionality in code behind
  • Can add pixels changing for control later on
  • There is a lot of documentation on how to use it

Maybe if you give us an idea of what you will need the language for we can give you better suggestions.

like image 51
Sam Avatar answered Oct 09 '22 10:10

Sam