If text1.text = "(你的名字)" then text1.text = "帅哥"
(要恶搞别人的话,在 then 后按回车,继续写:
else
text1.text = "(恶搞)"
end if)
end sub
*需要在郑郑窗体上建立一个按钮和嫌丛迟一个文本框芹李
*输入后按按钮,会在文本框内显示
import java.awt.event.ActionEventimport java.awt.event.ActionListener
import javax.swing.JButton
import javax.swing.JFrame
import javax.swing.JOptionPane
public class Tips extends JFrame{
private JButton sg = null
private JButton mv = null
/**
* 一. 实验目的
熟悉包的使用。
理解java中的派生和继承。
初步接触java的图形与用户界面。
Java.awt包和java.swing包的使用。(java.awt包以了解为主)
二.实验要求
运用java图形界面包,判猜写一个图形对话框。要求在框中点击选择“帅哥”或“美女”。然后根据选择d出“您能以帅救国”或者“您能以美倾城”的图形框。
三.程序参考
无
实验上传方亩仔法:
将源文掘耐型件及其结果以word文档形式打包上传。
压缩包名格式:专业+姓名+学号。
(额外提示:推荐先看懂题目,再理清程序思路,最后动手做。)
*/
public Tips(){
this.setLayout(null)
sg = new JButton("帅哥")
sg.setBounds(10,10, 80,50)
this.add(sg)
mv = new JButton("美女")
mv.setBounds(90,10, 80,50)
this.add(mv)
ActionListeneror listener = new ActionListeneror()
sg.addActionListener(listener)
mv.addActionListener(listener)
this.setBounds(100, 100, 300, 200)
this.setVisible(true)
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE)
}
private class ActionListeneror implements ActionListener{
@Override
public void actionPerformed(ActionEvent event) {
Object o = event.getSource()
if(o.equals(sg)){
JOptionPane.showMessageDialog(null,"您能以帅救国")
}else if(o.equals(mv)){
JOptionPane.showMessageDialog(null,"您能以美倾城")
}
}
}
public static void main(String[] args) {
new Tips()
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)