⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memoire_setting.java~31~

📁 提醒簿采用java语言和xml数据库结合开发.通过读写xml文件动态写入读取备忘录.,通过线程机制及时提醒您.提供多种提醒方式.操作方便,使用简单.是个很不错的提醒簿. 运行平台: Windows
💻 JAVA~31~
字号:
package system_setting;

import java.awt.*;

import javax.swing.*;
import com.borland.jbcl.layout.XYLayout;
import com.borland.jbcl.layout.*;
import javax.swing.BorderFactory;
import java.awt.Color;
import javax.swing.border.TitledBorder;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2007</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class Memoire_Setting extends JFrame {
    XYLayout xYLayout1 = new XYLayout();
    JPanel jPanel1 = new JPanel();
    JPanel jPanel2 = new JPanel();
    TitledBorder titledBorder1 = new TitledBorder("");
    TitledBorder titledBorder2 = new TitledBorder("");
    public Memoire_Setting() {
        try {
            jbInit();
            this.setDefaultCloseOperation(this.DISPOSE_ON_CLOSE);
        } catch (Exception exception) {
            exception.printStackTrace();
        }
    }

    private void jbInit() throws Exception {
        getContentPane().setLayout(xYLayout1);
        this.getContentPane().setBackground(new Color(236, 233, 255));
        jPanel2.setBorder(BorderFactory.createEtchedBorder());
        xYLayout1.setWidth(500);
        xYLayout1.setHeight(273);
        jPanel1.setBackground(Color.white);
        jPanel1.setBorder(titledBorder2);
        this.getContentPane().add(jPanel1, new XYConstraints(0, 0, 144, 273));
        this.getContentPane().add(jPanel2, new XYConstraints(143, 0, 358, 273));
        this.setTitle("-- ^_^ -- 勿忘软件 -- ^_^ --");
    }

    public static void main(String[] args) {
        Memoire_Setting memoire_setting = new Memoire_Setting();
        memoire_setting.setLocation(300, 200);
        memoire_setting.setSize(500, 300);
        memoire_setting.setVisible(true);
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -