AboutUI
package com.alaram.ui.t5;
import javax.swing.*;
import javax.swing.border.Border;
import javax.swing.border.LineBorder;
import java.awt.*;
/**
* Created by IntelliJ IDEA.
*
* @Author : Shrimpking
* @create 2024/9/29 16:04
*/
public class AboutUI extends JFrame
{
private JLabel appTitle; //应用程序名称
private JLabel appVersion; // 应用程序版本
private JLabel appHomePage; //首页
private JLabel appDesc; //说明
private JLabel imageLabel; //图片
AlarmUI5 alarmUI; //界面UI
JPanel panel;
public AboutUI(AlarmUI5 alarmUI){
this.alarmUI = alarmUI;
panel = new JPanel();
appTitle = new JLabel("应用程序名称:模仿闹钟工具软件");
appTitle.setBounds(20,40,200,30);
appVersion = new JLabel(