Phil
Phil

Reputation: 50516

Swing popup located at bottom right of windows screen

I wish to make a swing popup window which appears at the bottom right of the windows screen. The problem is that windows has a toolbar at the bottom which takes up some space, so I don't know how to work out the y location for the popup so that it does not overlap the toolbar at the bottom of screen.

== Update, must be Java Swing, thanks! ==

Upvotes: 0

Views: 717

Answers (1)

Nipuna
Nipuna

Reputation: 7026

Try this code

    yourPopUpWindow.setLocation(WIDTH, WIDTH);

Upvotes: 1

Related Questions