我有一个扩展JFrame的类,里面有菜单栏和菜单项。在菜单栏下我想添加一个JPanel,我可以在其中添加组件和绘制shapes.How我会在这个类中添加一个JPanel吗?对不起,如果这是一个简单的问题,我是初学者。
import java.awt.FlowLayout;
import javax.swing.*;
public class theMenu extends JFrame {
static JMenuBar menubar;
JMenu shape, color;
JCheckBox fill;
JButton btn1,btn2;
JMenuItem circle, rectangle, line,triangle;
JMenuItem red, green, blue, yellow;
public theMenu(){
super("Using JMenus");
menubar=new JMenuBar ();
shape=new JMenu ("Shape");
add(menubar);
setJMenuBar(menubar); // add menu bar to application
shape=new JMenu ("Shape");
color=new JMenu ("Color");
fill=new JCheckBox("fill");
btn1=new JButton("save");
btn2=new JButton("import");
circle=new JMenuItem ("Circle");
rectangle=new JMenuItem ("Rectangle");
line=new JMenuItem ("Line");
triangle = new JMenuItem ("Triangle");
red=new JMenuItem ("Red");
green=new JMenuItem ("Green");
blue=new JMenuItem ("Blue");
yellow=new JMenuItem ("Yellow");
shape.add (circle);
shape.add (rectangle);
shape.add (line);
shape.add (triangle);
color.add (red);
color.add (green);
color.add (blue);
color.add (yellow);
menubar.add (shape);
menubar.add(color);
menubar.add(fill);
menubar.add(btn1);
menubar.add(btn2);
}
}
答案 0 :(得分:4)
简单:
像:
JPanel p = new JPanel();
f.getContentPane().add(p);
有关详细信息,请先阅读here。
除此之外:你应该首先阅读静态和非静态字段之间的区别。拥有所有静态字段(在您的类的实例之间共享)是一种不好的做法;然后使用那些作为" normal"构造函数中的字段。
换句话说:在编写Swing UI应用程序之前,您可能首先要研究Java的基础。 Swing不应该是你的第一站#34;在寻找学习Java的例子时。如果您仍想从Java开始 - 那么请参加现有教程 - "试用和错误"学习Swing等框架并不是一种有效的策略。您需要了解许多细微的细节 - 不知道它们会转化为:从一个问题运行到下一个问题。