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

📄 general_info_interface.java

📁 it is basic library management
💻 JAVA
字号:
import javax.swing.*;
import java.awt.*;

public interface General_Info_Interface
{
	public JPanel pane1 = new JPanel(); 
	public JPanel pane2 = new JPanel(); 
	public JPanel scroll = new JPanel();
	public JPanel text = new JPanel();
    public JTextArea textArea = new JTextArea(4, 30);
    public JLabel tel = new JLabel("Tel No"); 
    public JLabel address = new JLabel("Address"); 
    public JLabel fax = new JLabel("Fax No");
    public JLabel email = new JLabel("E-Mail");
    public JLabel contacts = new JLabel("Contacts");
    public JTextField tel_text = new JTextField(20);
    public JTextField fax_text = new JTextField(20);
    public JTextField email_text = new JTextField(20);
    public JScrollPane scrollPane = new JScrollPane(textArea);
}

⌨️ 快捷键说明

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