我们可以分别使用setShape()和setOpacity()更改JFrame的形状和不透明度。有没有办法改变JInternalFrame的形状和不透明度?谢谢。
import java.awt.geom.Arc2D;
import java.awt.geom.Rectangle2D;
import javax.swing.JFrame;
public class RotatingWheel extends JFrame
{
public RotatingWheel() {
setUndecorated(true);
setSize(500, 500);
setLocation(500, 150);
setVisible(true);
setOpacity(0.6f);
setShape(new Arc2D.Double(new Rectangle2D.Double(5, 25, 385, 385), 90, 360, Arc2D.PIE));
}
public static void main(String args[])
{
new RotatingWheel();
}
}