java中,在JFrame中加入了面板,并在面板中加了两个按钮为什么不显示那个面板?部分代码如下:
import...publicclassMainFrameextendsJFrame{......publicMainFrame(){this.setBounds(100...
import...
public class MainFrame extends JFrame{
......
public MainFrame(){
this.setBounds(100,100,900,600);
this.setVisible(true);
.......
panel8.add(button13);
panel8.add(button14);
this.add(panel,BorderLayout.NORTH);
this.add(panel8,BorderLayout.SOUTH);
.....
public void checkButtonState(){
.....
button13.setEnabled(true);
button14.setEnabled(true);
}
panel显示但是panel8不显示。 展开
public class MainFrame extends JFrame{
......
public MainFrame(){
this.setBounds(100,100,900,600);
this.setVisible(true);
.......
panel8.add(button13);
panel8.add(button14);
this.add(panel,BorderLayout.NORTH);
this.add(panel8,BorderLayout.SOUTH);
.....
public void checkButtonState(){
.....
button13.setEnabled(true);
button14.setEnabled(true);
}
panel显示但是panel8不显示。 展开
1个回答
展开全部
要加个布局:
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JButton;
class ButtonFrame extends JFrame
{
ButtonFrame()
{
super("按钮和框架");
this.setLayout(new FlowLayout()); // 加上这一句
JButton jb1=new JButton("确定");
add(jb1);
JButton jb2=new JButton("取消");
add(jb2);
}
}
public class test
{
public static void main(String[] args)
{
ButtonFrame bf=new ButtonFrame();
bf.setSize(200,150);
bf.setLocation(400, 300);
bf.setVisible(true);
}
}
或者你用其他布局,用setLayout(null)的话就得自己设定按钮的位置,用楼上说的,setLocation
import java.awt.FlowLayout;
import javax.swing.JFrame;
import javax.swing.JButton;
class ButtonFrame extends JFrame
{
ButtonFrame()
{
super("按钮和框架");
this.setLayout(new FlowLayout()); // 加上这一句
JButton jb1=new JButton("确定");
add(jb1);
JButton jb2=new JButton("取消");
add(jb2);
}
}
public class test
{
public static void main(String[] args)
{
ButtonFrame bf=new ButtonFrame();
bf.setSize(200,150);
bf.setLocation(400, 300);
bf.setVisible(true);
}
}
或者你用其他布局,用setLayout(null)的话就得自己设定按钮的位置,用楼上说的,setLocation
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询