如何将框架分为两部分

如何将框架分为两部分,第1张

如何将框架分为两部分

正如Amir所说,您想为此使用JSplitPane。我已经在您的代码中添加了它。看看这个。

public static void main(String[] args) {    GlassView view = new GlassView();}private static class GlassView extends Jframe {    private int width = 600;    private int height = 750;    public GlassView() {        this.setSize(width, height);        this.setVisible(true);        this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);        JPanel glass = new JPanel();        glass.setSize(450, 750);        glass.setBackground(Color.BLUE);        glass.setVisible(true);        JPanel controls = new JPanel();        controls.setSize(150, 750);        controls.setBackground(Color.RED);        controls.setVisible(true);        JSplitPane splitPane = new JSplitPane();        splitPane.setSize(width, height);        splitPane.setDividerSize(0);        splitPane.setDividerLocation(150);        splitPane.setOrientation(JSplitPane.HORIZONTAL_SPLIT);        splitPane.setLeftComponent(controls);        splitPane.setRightComponent(glass);        this.add(splitPane);    }}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5507580.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-13
下一篇 2022-12-13

发表评论

登录后才能评论

评论列表(0条)

保存