Questions tagged [gui-designer]
96 questions
0
votes
1 answer
Changing JPanel while hitting JButton in Swing using IntelIJ IDEA GUI Designer
I am working with IntelIJ and what I am trying to do is:
While hitting the Panel1Button the right JPanel should switch on the Panel1 and analogical with the Panel2Button but what happens is some small square appears.
Code:
GridBagLayout layout =…

Kuba Kolybacz
- 17
- 7
0
votes
1 answer
How to use a Java GUI designer for Clojure?
I'm LOVING coding with Clojure. It's a great language! But until the moment I haven't found any GUI designer for Clojure (with drag and drop components such as Visual Studio's Form Designer, etc). I'm studying programming and my teachers are used to…

Tiago Dall'Oca
- 329
- 3
- 15
0
votes
0 answers
What is a simple way to write GUI apps with clojure?
I haven't seen any nice app frameworks for clojure yet. Are there any good sdks with binding for clojure or clojure script?

M.R.
- 1,053
- 2
- 13
- 30
0
votes
1 answer
Cross-platform IDE for cross-platform high-level language with easy GUI creation (to replace VB .NET)
Suppose that you wish to show somebody who is not familiar with any programming language and he/she will (probably) not be involved in professional programming, some basics concepts: you would like to provide idea of loops, conditional statements…

matandked
- 1,527
- 4
- 26
- 51
0
votes
3 answers
.NET C# - Form versus Designer code files for Event Wiring
I was just curious how others work with this kind of WinForm code in C#.
Lets say I have a Form lets call it Form1. And I have a DataGridView called dgvMain.
Where do you put the code:
this.dgvMain.CellEndEdit += new…

BuddyJoe
- 69,735
- 114
- 291
- 466
0
votes
1 answer
GUI Designer in IntelliJ unable generate a Java Class
I am using IntelliJ GUI Designer to generate a GUI application (first-time-user). I tried generating some small example UI's and was able to do it. However, today which trying something, the application prompted me to provide a user name and date,…

novicegeek
- 773
- 2
- 9
- 29
0
votes
2 answers
What language would people recommend as simple GUI that can be used as input to a script runing on Cygwin?
I need a simple window with three input boxes and three labels (login name, password, and server node) and a button to execute the script. I do not want any third party programs that need to be installed on Windows. If it can be installed on Cygwin…

Paul
- 198
- 1
- 9
- 22
0
votes
3 answers
Need some help with GUI in java
i'm working on GUI in java and got stuck with move the object.
Please visit this youtube video i made a short demo for you guys to see what i was trying to do. I'm so new to the GUI thing as i've never been taught of doing GUI.
Here is the link:…

James1
- 273
- 1
- 4
- 10
0
votes
1 answer
Xcode / Interface Builder - better workflow from designer to coder?
Were dealing with some pretty custom UI elements while building our OSX / Cocoa and iPhone / IPad apps. I was wondering if anyone has good recommendations or tricks for getting a better workflow between UI designers and coders while using Xcode /…

tbarbe
- 1,299
- 2
- 15
- 22
0
votes
2 answers
Programmatically access IntelliJ UI Designer created objects?
I have created a TextView in the UI designer, but I can't figure out how I should access it from the code. I have tried Go To Declaration but that just brings me to the XML file where the TextView is 'made'. Does anyone know how to do this? Help is…

user2687781
- 325
- 2
- 11
0
votes
3 answers
Do any Java GUI builders exist that do not require external JAR's?
I am looking for a Java GUI building tool that generates the Java Swing code for me. I'm planning on using it to get all of the Frame/Panel code created quickly and then customize everything by hand after that.
It would be nice to be able to choose…

Robert Greiner
- 29,049
- 9
- 65
- 85
0
votes
1 answer
How in IntelliJ IDEA GUI Designer to add your own property editor?
Here's an example I want to see instead of all capital letters in the property editor I want to see only the first.
package Components;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import…
0
votes
0 answers
IntelliJ IDEA + Play!-plugin: Do not open UI Designer for Java source
Running the Community Edition of IntelliJ IDEA on Arch Linux (12.0.4 Build 123.169), I installed the Play!-2.0 Plugin. Once i managed to get it running, I began hitting this wall: whenever I open a *.java-source-file from the project-explorer, it…

baumanno
- 1
- 1
0
votes
2 answers
vs2005 - vc++- The designer could not be shown for this file because none of the classes within it can be designed
I know that this topic has been asked several times before but none of them seems to be the solution to my problem. I need to create a windows form application(in visual studio 2005, 32 bit) which I need to build with a makefile. I simply start with…

seleciii44
- 1,529
- 3
- 13
- 26
0
votes
2 answers
Preferred way to build gui components tree
What is the preferred way to build application gui components tree?
Instantiate all components and build an entire tree, controlling it with show/hide/disable/enable operations on user events.
Dynamically creating gui with create/add/remove…

pawelsto
- 75
- 5