Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[e4-dev] multiple pages in swt using eclipse 4


Hi all,
 
I am working with eclipse 4.1 and I am trying to make a GUI of multiple pages. I am using swt and in my code I am using the 'Composite parent' and it does not have code for a shell or display it just uses:

@PostConstruct

public void buildUI() {

logger.info("Start building UI");

final GridLayout layout = new GridLayout(2, false);

parent.setLayout(layout);

 

I have having great difficulty trying to find any examples on the web or to find tutorials because they all seem to be using the shell method?

I am trying to link a new page to be displayed once the 'next' button is pressed?

I would be delighted if anyone can help me!

Ann.



Back to the top