我想创建一个形状为“L”的java应用程序,以便应用程序只占用屏幕的左边框和下边框。我也不希望顶部有正常的边框和标题栏。我见过其他人创造圆圈和其他形状,但没有复杂的形状。这适用于Windows XP计算机,永远不会出现在任何其他操作系统上。
那么,我该怎么做?
答案 0 :(得分:4)
java.awt.Window
的 javax.swing.JWindow
/ java.awt.Frame
和javax.swing.JFrame
/ setUndecorated
将创建无框窗口。您可以将两个或更多个放在一起以创建L形。
从6u10开始,Sun JRE还有一个非标准API或非矩形透明窗口。
答案 1 :(得分:2)
我认为这应该是可能的,尽管您可能需要小心布置组件。如果您查看here,并阅读有关设置窗口形状的部分,则会显示以下“形状可以是java.awt.Shape接口的任何实例”。然后,如果您查看Shape接口,java.awt.Polygon将实现该接口。因此,您应该能够实现具有“L”形状的多边形。试一试。
答案 2 :(得分:1)
在这里你去Asa,这正是你需要的:
import com.sun.awt.AWTUtilities;
import java.awt.Polygon;
import java.awt.Shape;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import javax.swing.JFrame;
public static void main(String[] args)
{
// create an undecorated frame
final JFrame lframe = new JFrame();
lframe.setSize(1600, 1200);
lframe.setUndecorated(true);
// using component resize allows for precise control
lframe.addComponentListener(new ComponentAdapter() {
// polygon points non-inclusive
// {0,0} {350,0} {350,960} {1600,960} {1600,1200} {0,1200}
int[] xpoints = {0,350,350,1600,1600,0};
int[] ypoints = {0,0,960,960,1200,1200};
@Override
public void componentResized(ComponentEvent evt)
{
// create the polygon (L-Shape)
Shape shape = new Polygon(xpoints, ypoints, xpoints.length);
// set the window shape
AWTUtilities.setWindowShape(lframe, shape);
}
});
// voila!
lframe.setVisible(true);
}