JAVA中,创建了文本框和下拉列表都无法显示出来
importjavax.swing.*;importjava.awt.*;importjava.awt.event.*;importjava.awt.Choice;pub...
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.awt.Choice;
public class BOOK{
public static void main(String args[]){
Frame win= new Frame("manage book");
win.setBounds(60,100,560,480);
win.setVisible(true);}
}
class wintext extends Frame{
wintext()
{ TextField text1 = new TextField();//如果我在后面加上text1.setVisible();就说我没有标识符
setLayout(new FlowLayout());}
}
class winchoice extends Frame{
Choice choice;
winchoice(){
setLayout(new FlowLayout());
choice=new Choice();}
} 展开
import java.awt.*;
import java.awt.event.*;
import java.awt.Choice;
public class BOOK{
public static void main(String args[]){
Frame win= new Frame("manage book");
win.setBounds(60,100,560,480);
win.setVisible(true);}
}
class wintext extends Frame{
wintext()
{ TextField text1 = new TextField();//如果我在后面加上text1.setVisible();就说我没有标识符
setLayout(new FlowLayout());}
}
class winchoice extends Frame{
Choice choice;
winchoice(){
setLayout(new FlowLayout());
choice=new Choice();}
} 展开
4个回答
展开全部
你把文本框和下拉列表添加到frame中了吗?
我建议使用swing包下面的类。
package cn.llc.opera;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class JFreamTest extends JFrame{
public JFreamTest() {
this.setBounds(0, 0, 500, 600);
this.setLayout(null);
JPanel panel = new JPanel();
panel.setBounds(50, 50, 400, 500);
panel.setLayout(null);
JTextField text1 = new JTextField("你好");
text1.setBounds(50, 50, 200, 20);
JComboBox<String> comboBox = new JComboBox<String>();
comboBox.addItem("0");
comboBox.addItem("1");
comboBox.addItem("2");
comboBox.setBounds(50, 80, 200, 20);
panel.add(comboBox);
panel.add(text1);
panel.setVisible(true);
this.add(panel);
this.setVisible(true);
}
public static void main(String[] args) {
new JFreamTest();
}
}
展开全部
public class Test{
JFrame frame1;
public Test(){
init();
}
public void init(){
frame1=new JFrame("frame1");//frame1的设置
frame1.setBounds(300, 300, 400, 400);
frame1.setDefaultCloseOperation(3);
JPanel panel=new JPanel();//frame1的JPanel
panel.setLayout(null);
JButton button=new JButton("测试窗口");
button.setBounds(100, 50, 200, 40);
panel.add(button);
frame1.add(panel);
frame1.setVisible(true);
}
public static void main(String[] args){
new Test();
}
}
建立一个显示窗口大概如下:
1、java窗口要先建一个Frame也就是一个窗框,窗框里怎么都没有。
2、再建一个Panel来装组件。panel是一个面板,用来装按钮、文本框和下拉框等组件的。
3、最后建组件并添加到panel中。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2017-10-08
展开全部
定义了两个类,都没有使用
~
~
~
~
~
~
~~~~~~~~~~~~~~~~~~~~~~~~~
~
~
~
~
~
~
~~~~~~~~~~~~~~~~~~~~~~~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-12-29
展开全部
把这些控件加到win中,然后在显示
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询