In my java program, when the user clicks on a button in the main JFrame
another JFrame
becomes visible on top of the main frame. Now how to make the previous frame blurred?
Exactly like the background in the image :
Now how to make the previous frame blurred?
have look at JLayer(Java7) based on JXLayer(Java6),
similair effect is possible with GlassPane
, or with JViewport
(not proper of ways, but good Swing GUI contains JScrollPane
as 1st. JComponent
in JFrame
/ JDialog
/ JWindow
)