3

Is this possible to make aero frame in java swing application?

bragboy
  • 34,892
  • 30
  • 114
  • 171
SamSol
  • 2,885
  • 6
  • 37
  • 56
  • 1
    possible duplicate: [Is it possible for Java apps to use the Aero Glass effect?](http://stackoverflow.com/questions/1107283/is-it-possible-for-java-apps-to-use-the-aero-glass-effect) – Gnoupi May 27 '10 at 09:25

2 Answers2

5

There is also How to Create Translucent and Shaped Windows.

Istao
  • 7,425
  • 6
  • 32
  • 39
0

As for Java 6 or older, using classes from import static java.awt.GraphicsDevice.WindowTranslucency.*;

Java 7 has added these two new methods for Swing.

JFrame.setUndecorated(boolean);//wont work if the frame is decorated
JFrame.setShape(someShape);//set frame shape
JFrame.setOpacity(somefloat);//set frame tranparency
Xiaoerge
  • 101
  • 1
  • 1