Gnoupi
Gnoupi

Reputation: 4754

How to make a JFrame have no taskbar button?

I would like to have a normal JFrame with its full functionalities (decoration, title, icon, resizing, minimizing, maximizing, etc.), with the only thing that it wouldn't appear in the system's taskbar.

(Typically, there would be another program opening and managing them).

Is it possible ? And if yes, what is the best way to do that ?

Upvotes: 1

Views: 1791

Answers (1)

bruno conde
bruno conde

Reputation: 48255

Use a non-modal JDialog instead of a JFrame.

Upvotes: 4

Related Questions