2 Star 0 Fork 0

gfjava/ShiYongGongJu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
BiaoBai.java 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
gfjava 提交于 2023-05-24 22:11 . 1
package abc;
import javax.swing.*;
public class BiaoBai extends JFrame {
public static void main(String[] args) {
JFrame frame=new JFrame("姑娘,做我女朋友吧!");
JOptionPane.showMessageDialog(null,"十年相遇");
JOptionPane.showMessageDialog(null,"百年回眸");
JOptionPane.showMessageDialog(null,"千年同船渡");
JOptionPane.showMessageDialog(null,"我愿以万年的等待");
JOptionPane.showMessageDialog(null,"百世的轮回");
JOptionPane.showMessageDialog(null,"换你今朝一世情缘,可否?");
frame.setSize(500,500);
frame.setLocation(320,240);
frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
frame.setVisible(true);
// 创建关闭按钮
JButton closeBtn = new JButton("好");
closeBtn.addActionListener(e -> {
JOptionPane.showMessageDialog(null,"那赶快去领证吧!!!");
frame.dispose(); // 关闭窗口
});
frame.add(closeBtn);
// 创建禁用按钮
JButton disabledBtn = new JButton("滚");
disabledBtn.setEnabled(false); // 禁用按钮
frame.add(disabledBtn);
frame.setLayout(null); // 设置布局为自由布局
closeBtn.setBounds(50, 50, 80, 30); // 设置关闭按钮位置和大小
disabledBtn.setBounds(150, 50, 80, 30); // 设置禁用按钮位置和大小
frame.setVisible(true);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/gfjava/shi-yong-gong-ju.git
git@gitee.com:gfjava/shi-yong-gong-ju.git
gfjava
shi-yong-gong-ju
ShiYongGongJu
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385