如何在使用未修饰的JFrame时添加对调整大小的支持?

时间:2010-05-06 11:47:13

标签: java swing resize customization jframe

我想自定义标题栏,最小化,最大化和关闭按钮。所以我在我的JFrame上使用setUndecorated(true);,但我仍然希望能够调整窗口大小。实现它的最佳方法是什么?

我在RootPane上有一个边框,我可以在Border或RootPane上使用MouseListeners。有什么建议吗?

import java.awt.Color;

import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.border.LineBorder;

public class UndecoratedFrame extends JFrame {

    private LineBorder border = new LineBorder(Color.BLUE,2);
    private JMenuBar menuBar = new JMenuBar();
    private JMenu menu = new JMenu("File");
    private JMenuItem item = new JMenuItem("Nothing");

    public UndecoratedFrame() {
        menu.add(item);
        menuBar.add(menu);
        this.setJMenuBar(menuBar);
        this.setUndecorated(true);
        this.getRootPane().setBorder(border);
        this.setSize(400,340);
        this.setVisible(true);
    }

    public static void main(String[] args) {
        new UndecoratedFrame();
    }
}

3 个答案:

答案 0 :(得分:6)

正如您所说,您的根窗格上有边框。因此,至少有一个位置(在绘制边框的位置下方),其中根窗格是最上面的组件。因此,您可以添加鼠标侦听器和鼠标移动侦听器。

单击根窗格(并按下鼠标按钮)时,鼠标和动作侦听器将通知您初始和实际鼠标位置。因此,您可以更新两个值之间偏移的帧大小,从而使您的帧可以调整大小。

答案 1 :(得分:5)

我在RootPane中发现了一个很好的方法,它给了我这个功能,所以现在我只需要找出如何自定义标题栏及其上的按钮。

我在this.getRootPane().setWindowDecorationStyle(JRootPane.FRAME);的构造函数中添加了UndecoratedFrame

有关Sexy Swing App – The Unified ToolbarHow to control window decorations

的更多内容

答案 2 :(得分:5)

Resizing Components显示了一种方式。