Is this possible to make aero frame in java swing application?
Asked
Active
Viewed 382 times
2 Answers
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