📄 connectpanel.java
字号:
/* * 10/01/2001 - 15:52:00 * * FtpGUI - Ftp client written in Java * Copyright (C) 2001 Kostadin Kirilov Kostadinov * k3co@hotmail.com * sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */package ftpgui;import java.awt.*;import javax.swing.*;/** * Title: FtpGUI * Description: * Copyright: Copyright (c) 2001 * Company: * @author Kostadin Kirilov Kostadinov * @version 1.0 */public class ConnectPanel extends JPanel{ private GridLayout m_objGridLayout=new GridLayout(4,2); public JTextField m_txtServerIP=new JTextField("ftp.linux.com"); public JTextField m_txtServerPort=new JTextField("21"); public JTextField m_txtUserName=new JTextField("anonymous"); public JTextField m_txtPassword=new JTextField("blabla@blabla.com"); public ConnectPanel() { try { jbInit(); } catch(Exception ex) { ex.printStackTrace(); } } void jbInit() throws Exception { this.setLayout(m_objGridLayout);// m_txtServerIP.setPreferredSize(new Dimension(100,m_txtServerIP.getSize().height)); this.add(new JLabel("Server")); this.add(m_txtServerIP); this.add(new JLabel("Port")); this.add(m_txtServerPort); this.add(new JLabel("UserName")); this.add(m_txtUserName); this.add(new JLabel("Password")); this.add(m_txtPassword); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -