Knotsman
Knotsman

Reputation: 35

JWindow task bar icon not shown

I have created a java program that does not use a JFrame, instead it is using a JWindow. This is exactly what i needed, an application without the windows border/title bar.

The problem is it does not show in the task bar at the bottom of the screen when its running.

Can anyone figure out how to fix this?

Upvotes: 2

Views: 489

Answers (1)

Andrew Thompson
Andrew Thompson

Reputation: 168825

Use an undecorated JFrame instead.

Upvotes: 7

Related Questions