我想设置一个vb程序,输入我的名字就会显示是帅哥,输入别人的就是不是帅哥,怎么搞?

我想设置一个vb程序,输入我的名字就会显示是帅哥,输入别人的就是不是帅哥,怎么搞?,第1张

Private Sub Command1_Click()

If text1.text = "(你的名字)" then text1.text = "帅哥"

(要恶搞别人的话,在 then 后按回车,继续写:

else 

text1.text = "(恶搞)" 

end if)

end sub

*需要在郑郑窗体上建立一个按钮和嫌丛迟一个文本框芹李

*输入后按按钮,会在文本框内显示

import java.awt.event.ActionEvent

import 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()

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12339907.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-24
下一篇 2023-05-24

发表评论

登录后才能评论

评论列表(0条)

保存