windowbuilder

Design view of Eclipse windowbuilder pugin on Windows 8.1 x64 prompts “Unknown GUI toolkit”

北战南征 提交于 2019-12-09 13:15:13
问题 I was using Eclipse Kepler Release 1 x64, wiht Java 7 x64 on Windows 4 pro x64 and I had no problems with Eclipse WindowBuilder plugin. But since I upgraded to Windows 8.1 pro x64, WindowBuilder has stopped working. First the follwoing button is freezed and does not respond to user clicks. And if in project explorer I go to some java file that I have already created with WindowBuilder plugin in windows 7 x64, right click on it and choose: Open with > WindowBuilder Editor , source code opens

Creating a SWING app with Eclipse Window Builder

我只是一个虾纸丫 提交于 2019-12-08 18:18:44
问题 I am using Eclipse Indigo on Mac. I just set up the Window Builder tool however for some reason I can not create a new project with it. I select the Swing Designer -> Application Window option another window pops up and asks me for the source folder, project name etc. but when I try to type a name in the source folder it says file cannot be found and when I try to browse there is nothing to select. Does anyone have an idea about whats going on ? thanks 回答1: You have to create a Java project

Incompatible Java Versions for WindowBuilder

元气小坏坏 提交于 2019-12-08 11:48:43
问题 I Installed WindowBuilder on Eclipse to create a Graphic User Interface for a program. When I go to the 'Design' tab the following error appears: Eclipse is running under 1.8, but this Java project has a 10 Java compliance level, so WindowBuilder will not be able to load classes from this project. Use a lower level of Java for the project, or run Eclipse using a newer Java version. I currently have Installed Java 8 (Update 171), and Oxygen.3a (4.7.3a) (Eclipse Version). I had previously

Can I use WindowBuilder (a Java visual editor Eclipse plugin) without GWT support?

ぐ巨炮叔叔 提交于 2019-12-07 12:14:27
问题 Can I use WindowBuilder (a Java visual editor Eclipse plugin) without Google Web Toolkit (GWT) support? I'm a little bit confused about it. It seems that it is integrated with GWT to build Google web applications. But can I use it to build a GUI for standard Java applications (like NetBeans)? I know it sounds silly, but I spend a lot of time to know if is it possible or not, but I couldn't know. Notice that I am a Mac user, (WindowBuilder on Mac seems not fully supported). 回答1: WindowBuilder

How to make WindowBuilder create fields that are not nested in Eclipse, Java

好久不见. 提交于 2019-12-07 06:34:57
问题 I am using WindowBuilder for Eclipse Java. When I make a Button or a Menu (or anything), it creates the fields nested inside of the constructor. Is there any way to make them fields and then initialized in the constructor so I can use them outside of the constructor? Thank you. ie: FROM public GUIFrame() { JMenuBar menuBar = new JMenuBar(); } TO public JMenuBar menubar; public GUIFrame() { menuBar = new JMenuBar(); } 回答1: There's a button to convert an element from "local to field". If you

Searching for WindowBuilder documentation/API

£可爱£侵袭症+ 提交于 2019-12-07 03:25:19
问题 I'm in a project with WindowBuilder Pro, and while trying to get a good grip of it I've been searching forever for good documentation without any luck. The best that I've found is Googles WindowBuilder Pro Infopage but that isn't extensive enough for me. Does anyone know any other good documentation? Or am I perhaps a bit off track here? I have very limited Swing-experience, and perhaps I'd be better off studying the SWING API instead of looking for WindowBuilder documentation? Very thankful

Can't find Window builder pro in eclipse indigo

这一生的挚爱 提交于 2019-12-06 02:49:31
问题 I read that Eclipse Indigo has Window Builder Pro plugin installed but I don't see where is it. File/New/Project doesn't give me option to choose Window Builder Pro. How to find it? 回答1: You need to add this update site to Eclipse. http://download.eclipse.org/windowbuilder/WB/release/R201106211200/3.7/ I found it on this page http://eclipse.org/windowbuilder/download.php 回答2: Seems as the project isn't fully finished for Indigo (http://eclipse.org/indigo/planning/SimultaneousReleaseOverview

How to make WindowBuilder create fields that are not nested in Eclipse, Java

ぐ巨炮叔叔 提交于 2019-12-05 08:50:58
I am using WindowBuilder for Eclipse Java. When I make a Button or a Menu (or anything), it creates the fields nested inside of the constructor. Is there any way to make them fields and then initialized in the constructor so I can use them outside of the constructor? Thank you. ie: FROM public GUIFrame() { JMenuBar menuBar = new JMenuBar(); } TO public JMenuBar menubar; public GUIFrame() { menuBar = new JMenuBar(); } Chris911 There's a button to convert an element from "local to field". If you want all components to be fields by default: Windows -> Preferences -> WindowBuilder -> Swing -> Code

Searching for WindowBuilder documentation/API

时光总嘲笑我的痴心妄想 提交于 2019-12-05 07:30:06
I'm in a project with WindowBuilder Pro, and while trying to get a good grip of it I've been searching forever for good documentation without any luck. The best that I've found is Googles WindowBuilder Pro Infopage but that isn't extensive enough for me. Does anyone know any other good documentation? Or am I perhaps a bit off track here? I have very limited Swing-experience, and perhaps I'd be better off studying the SWING API instead of looking for WindowBuilder documentation? Very thankful for any tips. The WindowBuilder docs that you reference are quite extensive (nearly 300 pages), but

Editing CSS in Gwt WindowBuilder

梦想的初衷 提交于 2019-12-04 17:08:57
I am using GWT in a project and recently started using the WindowBuilder in Eclipse. I created a new class and in the WindowBuilder and added some widgets. All that works and everything. However, when I try to edit the CSS for some of the panels and I click to edit the "styleName" field I get an error message which says: "There are no CSS files referenced from modules HTML." I've tried adding a link to a style sheet in my base html file and in the Web.gwt.xml file, but that does not seem to work. I get the same error. In other classes I have used UiBinder and added the style in the XML file,