斗地主登录界面(JAVA图形化界面)设置

1.实现代码

import CodeUtil.CodeUtil;
import domain.User;import javax.swing.*;
import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.util.ArrayList;public class LoginGame extends JFrame implements MouseListener {static ArrayList<User> alluser=new ArrayList<>();static {alluser.add(new User("张三","aaa"));alluser.add(new User("李四","bbb"));}JButton login = new JButton();JButton register = new JButton();JTextField username = new JTextField();JPasswordField password = new JPasswordField();JTextField code = new JTextField();//正确的验证码JLabel rightCode = new JLabel();public LoginGame(){initJFrame();initView();this.setVisible(true);}public void initJFrame(){this.setSize(633,423);this.setTitle("斗地主V1.0登录");//设置左上角小标题this.setAlwaysOnTop(true);//设置一直置顶this.setLocationRelativeTo(null);//设置居中this.setDefaultCloseOperation(3);//设置点右上角关闭整个程序this.setVisible(true);//设置不隐藏界面}public void initView(){//1.添加用户文字Font usernameFont=new Font(null,1,16);JLabel inputtext=new JLabel("用户名");inputtext.setForeground(Color.white);inputtext.setFont(usernameFont);inputtext.setBounds(140, 55, 55, 22);this.getContentPane().add(inputtext);//2.添加用户名输入框username.setBounds(223, 46, 200, 30);this.getContentPane().add(username);//3.添加密码文字Font userPassword=new Font(null,1,16);JLabel intpupasd=new JLabel("密码");intpupasd.setForeground(Color.white);intpupasd.setFont(userPassword);intpupasd.setBounds(197, 95, 40, 22);this.getContentPane().add(intpupasd);//4.密码输入框password.setBounds(263, 87, 160, 30);this.getContentPane().add(password);//5.验证码提示Font yzmFont=new Font(null,1,16);JLabel inputYzm=new JLabel("验证码");inputYzm.setForeground(Color.white);inputYzm.setFont(yzmFont);inputYzm.setBounds(215, 142, 55, 22);this.getContentPane().add(inputYzm);//验证码输入框code.setBounds(291, 133, 100, 30);this.getContentPane().add(code);//获取正确的验证码String codeStr = CodeUtil.getCode();Font rightCodeFont = new Font(null,1,15);rightCode.setForeground(Color.red);//设置字体rightCode.setFont(rightCodeFont);//设置内容rightCode.setText(codeStr);//绑定鼠标事件rightCode.addMouseListener(this);//位置和宽高rightCode.setBounds(400, 133, 100, 30);//添加到界面this.getContentPane().add(rightCode);//6.添加登录按钮  "D:\项目IDEA\PINTU\FammerJoker\img\登录按钮.png"login.setBounds(123, 310, 128, 47);login.setIcon(new ImageIcon("FammerJoker\\img\\登录按钮.png"));//去除按钮的边框login.setBorderPainted(false);//去除按钮的背景login.setContentAreaFilled(false);//给登录按钮绑定鼠标事件login.addMouseListener(this);this.getContentPane().add(login);//7.添加注册按钮register.setBounds(256, 310, 128, 47);register.setIcon(new ImageIcon("FammerJoker\\img\\注册按钮.png"));register.setBorderPainted(false);register.setContentAreaFilled(false);register.addMouseListener(this);this.getContentPane().add(register);//8.添加背景图片 "D:\项目IDEA\PINTU\FammerJoker\img\background.png"JLabel background = new JLabel(new ImageIcon("FammerJoker\\img\\background.png"));background.setBounds(0, 0, 633, 423);this.getContentPane().add(background);}@Overridepublic void mouseClicked(MouseEvent e) {Object obj = e.getSource();if (obj == login) {//获取两个文本输入框中的内容String usernameInput = username.getText();String passwordInput = password.getText();//获取用户输入的验证码String codeInput = code.getText();//判断验证码是否为空if (codeInput.length() == 0) {showJDialog("验证码不能为空");return;}//判断用户名和密码是否为空if (usernameInput.length() == 0 || passwordInput.length() == 0) {showJDialog("用户名或者密码为空");return;}//判断验证码是否正确if (!codeInput.equalsIgnoreCase(rightCode.getText())) {showJDialog("验证码输入错误");return;}//判断集合中是否包含当前用户对象//其实就是验证用户名和密码是否相同//contains底层是依赖equals方法判断的,所以需要重写equals方法User userInfo = new User(usernameInput, passwordInput);if (alluser.contains(userInfo)) {//关闭当前登录界面this.setVisible(false);//打开游戏的主界面new GameJFrame();} else {showJDialog("用户名或密码错误");}} else if (obj == register) {System.out.println("点击了注册按钮");} else if (obj == rightCode) {//获取一个新的验证码String code = CodeUtil.getCode();rightCode.setText(code);}}//展示弹框public void showJDialog(String content) {//创建一个弹框对象JDialog jDialog = new JDialog();//给弹框设置大小jDialog.setSize(200, 150);//让弹框置顶jDialog.setAlwaysOnTop(true);//让弹框居中jDialog.setLocationRelativeTo(null);//弹框不关闭永远无法操作下面的界面jDialog.setModal(true);//创建Jlabel对象管理文字并添加到弹框当中JLabel warning = new JLabel(content);warning.setBounds(0, 0, 200, 150);jDialog.getContentPane().add(warning);//让弹框展示出来jDialog.setVisible(true);}//按下不松@Overridepublic void mousePressed(MouseEvent e) {if (e.getSource() == login) {login.setIcon(new ImageIcon("FammerJoker\\img\\登录按下.png"));} else if (e.getSource() == register) {register.setIcon(new ImageIcon("FammerJoker\\img\\注册按下.png"));}}//松开按钮@Overridepublic void mouseReleased(MouseEvent e) {if (e.getSource() == login) {login.setIcon(new ImageIcon("FammerJoker\\img\\登录按钮.png"));} else if (e.getSource() == register) {register.setIcon(new ImageIcon("FammerJoker\\img\\注册按钮.png"));}}@Overridepublic void mouseEntered(MouseEvent e) {}@Overridepublic void mouseExited(MouseEvent e) {}}

2.效果图展示

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/454704.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

高校毕业生就业管理系统(ssm)

登录界面 管理员界面 学生界面 企业的单位用户界面 1、系统说明 &#xff08;1&#xff09;spring、springmvc、mybatis、mysql、jsp &#xff08;2&#xff09;系统分为学生、管理员、企业用户三种角色 欢迎留言交流学习&#xff0c;qq: 978206256

kubesphere部署k8s-v1.23.10

功能&#xff1a; &#x1f578; 部署 Kubernetes 集群 &#x1f517; Kubernetes 多集群管理 &#x1f916; Kubernetes DevOps &#x1f50e; 云原生可观测性 &#x1f9e9; 基于 Istio 的微服务治理 &#x1f4bb; 应用商店 &#x1f4a1; Kubernetes 边缘节点管理 &#x1…

信创ARM架构QT应用开发环境搭建

Linux ARM架构QT应用开发环境搭建 前言交叉工具链Ubuntu上安装 32 位 ARM 交叉工具链Ubuntu上安装 64 位 ARM 交叉工具链 交叉编译 QT 库下载 QT 源码交叉编译 QT 源码 Qt Creator交叉编译配置配置 Qt Creator Kits创建一个测试项目 小结 前言 有没有碰到过这种情况&#xff1…

有向图的拓扑排序-BFS求解

题目 给定一个n个点m条边的有向图&#xff0c;图中可能存在重边和自环。 请输出任意一个该有向图的拓扑序列&#xff0c;如果拓扑序列不存在&#xff0c;则输出-1。 若一个由图中所有点构成的序列A满足:对于图中的每条边(x, y)&#xff0c;x在A中都出现在y之前&#xff0c;则称…

Vue3开发环境搭建和工程结构(一)

一、NVM和Node.js安装 NVM 是 Node Version Manager&#xff08;Node 版本管理工具&#xff09;的缩写&#xff0c;是一个命令行工具&#xff0c;用于管理和切换到不同版本的 Node.js。 1、前往 nvm-windows 仓库&#xff0c;然后单击立即下载 2、下载最新版本 3 、按照安装向…

HarmonyOS远程真机调试方法

生成密钥库文件 打开DevEco Studio&#xff0c;点击菜单栏上的build&#xff0c; 填一些信息点击&#xff0c;没有key的话点击new一个新的key。 生成profile文件 AppGallery Connect (huawei.com) 进入该链接网站&#xff0c;点击用户与访问将刚生成的csr证书提交上去其中需…

机器学习系列5-特征组合、简化正则化

1.特征组合 1.1特征组合&#xff1a;编码非线性规律 我们做出如下假设&#xff1a;蓝点代表生病的树。橙色的点代表健康的树。 您可以绘制一条直线将生病的树与健康的树清晰地分开吗&#xff1f;不可以。这是一个非线性问题。您绘制的任何线条都无法很好地预测树的健康状况…

redis下载与安装教程(centos下)

文章目录 一&#xff0c;redis下载1.1上传到linux服务器上 二&#xff0c;redis安装2.1 安装依赖2.2 解压包2.3 编译并安装2.4 指定配置启动2.5 设置redis开机自启 一&#xff0c;redis下载 官网&#xff1a; https://redis.io1.1上传到linux服务器上 我用filezila上传到/us…

防御保护---防火墙的可靠性

文章目录 前言一、pandas是什么&#xff1f;二、使用步骤 1.引入库2.读入数据总结 一.防火墙可靠性概述 防火墙的防护功能基于状态检测的前提下会存在会话表&#xff1b;会话表存在老化时间&#xff0c;仅在流量触发后防火墙会刷新会话表&#xff0c;因此防火墙无法像路由器那样…

如何部署Linux AMH服务器管理面板并结合内网穿透远程访问

文章目录 1. Linux 安装AMH 面板2. 本地访问AMH 面板3. Linux安装Cpolar4. 配置AMH面板公网地址5. 远程访问AMH面板6. 固定AMH面板公网地址 AMH 是一款基于 Linux 系统的服务器管理面板&#xff0c;它提供了一系列的功能&#xff0c;包括网站管理、FTP 管理、数据库管理、DNS 管…

C++泛编程(4)

类模板高级&#xff08;1&#xff09; 1.类模板具体化部分具体化完全具体化 2.类模板与继承 1.类模板具体化 有了函数模板具体化的基础&#xff0c;学习类模板的具体化很简单。类模板具体化有两种方式&#xff0c;分别为部分具体化和完全具体化。假如有类模板&#xff1a; te…

C++ 哈希表(unordered_map与unordered_set)

文章目录 unordered_map 与 unordered_set哈希表 (Hash Table)哈希函数哈希冲突模拟实现封装 补充&#xff1a;unordered_map 与 unordered_set 的使用 unordered_map 与 unordered_set 就和名字一样&#xff0c;这是 map、set 的无序版本&#xff08;数据遍历出来是无序的&am…