From e6779d05b7505d60bd316a2611f474f763b530fd Mon Sep 17 00:00:00 2001 From: pqjob6fzl <2879174526@qq.com> Date: Thu, 30 Nov 2023 11:06:29 +0800 Subject: [PATCH] Update README.md --- README.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 49b3bca..a9412fa 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ #xyct -/** - * 起始页面,收取顾客联系电话和就餐人数信息并点击点餐后跳转CustomerOrderWindow页面 - */ +/*起始页面,收取顾客联系电话和就餐人数信息并点击点餐后跳转CustomerOrderWindow页面*/ public class CustomerIndex extends JFrame implements ActionListener { Image image; JPanel jp,jp_phone,jp_person; @@ -45,9 +43,7 @@ public class CustomerIndex extends JFrame implements ActionListener { this.add(jp); this.setSize(500, 500); - /** - * 确定JWindow的初始位置 - */ + /*确定JWindow的初始位置*/ this.setLocationRelativeTo(null); this.setVisible(true); }