Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Eclipse 4 » RCP Windows Builder not working(Windows Builder not working)
RCP Windows Builder not working [message #1802257] Tue, 05 February 2019 13:04
Bruce Edgerton is currently offline Bruce EdgertonFriend
Messages: 1
Registered: February 2019
Junior Member
I am building an RCP application and I have added Windows Builder 1.9.2. When I open a part using windows builder and I select the Design Tab, nothing is displayed in the Windows Builder, all areas are blank (Components, properties and Palette). Is there anything in particular I need to do to get it working?

This is an example part I am loading:

public class HistoryBuilderPart {
private Button button;

@Inject
public HistoryBuilderPart() {

}

@PostConstruct
public void postConstruct(Composite parent, final Shell shell) {
button = new Button(parent, SWT.PUSH);
button.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
MessageDialog.openInformation(shell, "Dynamic", "Dynamics are working");
}
});

button.setText("Validate");

}
}
Previous Topic:How to determine the enabled state of a command programmatically?
Next Topic:Why the recent Eclipse "Language servers" features slow down so much the IDE
Goto Forum:
  


Current Time: Thu Mar 28 14:48:00 GMT 2024

Powered by FUDForum. Page generated in 0.03298 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top