我这个程序找不到JFrame,这个类在哪个包调用! Frame和Color怎么使用
publicclassFrameTester{publicstaticvoidmain(Stringargs[]){JFrameframe=newJFrame();fra...
public class FrameTester
{
public static void main(String args[])
{
JFrame frame = new JFrame();
frame.setSize(200,200);
JTextField text = new JTextField("Hello,World");
text.setBackground(Color.PINK);
frame.add(text);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
} 展开
{
public static void main(String args[])
{
JFrame frame = new JFrame();
frame.setSize(200,200);
JTextField text = new JTextField("Hello,World");
text.setBackground(Color.PINK);
frame.add(text);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询