关于JInternalFrame去掉边框和标题栏 .

来源:互联网 发布:淘宝的买家中心在哪里 编辑:程序博客网 时间:2024/05/18 00:52
去掉边框:

internalFrame.setBorder(BorderFactory.createEmptyBorder());

去掉标题栏

((BasicInternalFrameUI)internalFrame.getUI()).setNorthPane(null);

原创粉丝点击