java swing中JPanel的布局问题 10
我在frame中分别布局了五个面板,让其显示在borderlayout管理器东西南北中的不同位置,问题是:west的面板中加入label、button能实现出来。但是加入...
我在frame中分别布局了五个面板,让其显示在borderlayout管理器东西南北中的不同位置,问题是:west的面板中加入label、button能实现出来。但是加入JDesktopPane>InternalFrame进去就不能显示,其他部位显示正常,求高手指教一二
//放入这段代码能显示面板
JPanel Panel_1=new JPanel(new BorderLayout());//2013.4.12
add(BorderLayout.WEST,Panel_1);
JButton btn_1 = new JButton();
Panel_1.add(BorderLayout.NORTH,btn_1);
//放入这段代码不能显示
/*JDesktopPane desktopPane_1 = new JDesktopPane();
desktopPane_1.setBounds(0, 0, 1, 1);
Panel_1.add(BorderLayout.CENTER, desktopPane_1);
JInternalFrame internalFrame_1 = new JInternalFrame(
"New JInternalFrame");
internalFrame_1.setPreferredSize(getPreferredSize());
desktopPane_1.add(internalFrame_1);
JScrollPane scrollPane_1 = new JScrollPane();
internalFrame_1.getContentPane().add(scrollPane_1, BorderLayout.CENTER);
internalFrame_1.setVisible(true);*/ 展开
//放入这段代码能显示面板
JPanel Panel_1=new JPanel(new BorderLayout());//2013.4.12
add(BorderLayout.WEST,Panel_1);
JButton btn_1 = new JButton();
Panel_1.add(BorderLayout.NORTH,btn_1);
//放入这段代码不能显示
/*JDesktopPane desktopPane_1 = new JDesktopPane();
desktopPane_1.setBounds(0, 0, 1, 1);
Panel_1.add(BorderLayout.CENTER, desktopPane_1);
JInternalFrame internalFrame_1 = new JInternalFrame(
"New JInternalFrame");
internalFrame_1.setPreferredSize(getPreferredSize());
desktopPane_1.add(internalFrame_1);
JScrollPane scrollPane_1 = new JScrollPane();
internalFrame_1.getContentPane().add(scrollPane_1, BorderLayout.CENTER);
internalFrame_1.setVisible(true);*/ 展开
3个回答
展开全部
贴码吧,不然怎么分析
desktopPane_1.setBounds(0, 0, 1, 1);你这尺寸在1个像素,肉眼看不到啊。
//
还是你设置的bounds问题,之所以放center能显示,是因为center里面会自适应大小
desktopPane_1.setBounds(0, 0, 1, 1);你这尺寸在1个像素,肉眼看不到啊。
//
还是你设置的bounds问题,之所以放center能显示,是因为center里面会自适应大小
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用FlowLayout,那么应该设置desktop的preferredSize
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
贴出你的代码,帮你找找。
-------------------------------------------------------
你给出的代码,有几个PANEL不知道是怎么来的,我稍改动了一下,你看看,
现在是显示出来了。
import java.awt.BorderLayout;
import javax.swing.JButton;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JInternalFrame;
import javax.swing.JScrollPane;
public class App extends JFrame {
public App() {
// 加入这这段注释代码不能显示
JDesktopPane desktopPane_1 = new JDesktopPane();
desktopPane_1.setBounds(0, 0, 1, 1);
add(BorderLayout.CENTER, desktopPane_1);
JInternalFrame internalFrame_1 = new JInternalFrame(
"New JInternalFrame");
internalFrame_1.setSize(400, 300);
desktopPane_1.add(internalFrame_1);
JScrollPane scrollPane_1 = new JScrollPane();
internalFrame_1.getContentPane().add(scrollPane_1, BorderLayout.CENTER);
internalFrame_1.setVisible(true);
JButton btn_1 = new JButton("OK");
add(BorderLayout.NORTH, btn_1);
setSize(600, 400);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
}
public static void main(String[] args) {
new App();
}
}
追问
追答
这个应该不是布局的问题,
上面的代码改成west也是没有问题的,
只可能是你的代码中有什么影响到了这个位置,这个不看你的代码,实再是找不到是为什么了。
猜测可能是
那个控件 调用了 setPreferredSize 方法来调整大小而影响的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询