Cratylus
Cratylus

Reputation: 54074

Set the window of an eclipse e4 application to have the whole screen size

How do I define in the Application.e4xmi that I want my window to have as size the whole available screen?
What values should we add to the Bounds(x,y,w,h) of the Trimmed Window?
I tried -1,-1,-1,-1 but it does not work.
Any ideas?

Upvotes: 8

Views: 3236

Answers (1)

Modus Tollens
Modus Tollens

Reputation: 5123

Add the tag shellMaximized to the supplementary tab of your TrimmedWindow like this:

Screenshot

See the Eclipse 4 RCP - Tutorial by Lars Vogel for more information.

Upvotes: 13

Related Questions