[问答题] 本题中,主窗口有一个按钮“打开对话框”和一个文本域,单击按钮“打开对话框”后会d出一个对话框,对话框上有两个按钮“Yes”和“No”,单击对话框上的“Yes”和“No”按钮后返回主窗口,并在右侧文本域中显示刚才所单击的按钮信息。
import java.awt.event.*;
import java.awt.*;
class MyDialog______implements ActionListener
static final int YES=1,NO=0;
int message=-1;Button yes,no;
MyDialog(frame f,String s,boolean b)
super(f,s,b);
yes=new Button("Yes");yes.addActionListener(this);
no=new Button("No");no.addActionListener(this);
setLayout(new FlowLayout());
add(yes);add(no);
setBounds(60,60,100,100);
addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)
message=-1;setVisible(false);
);
public void actionPerformed(ActionEvent e)
if(e.getSource()==yes)
message=YES;
setVisible(false);
else if(e.getSource()==n
正确答案:第1处:extends Dialog 第2处:dialog.setVisible(true)
参考解析:第1处设定对话框的类应继承Dialog类;第2处显示对话框。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)