📄 normalframe.java~8~
字号:
package employeemanagersystem;
import java.awt.*;
import javax.swing.*;
import java.awt.Rectangle;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2007</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class NormalFrame
extends JFrame
{
LoginInformation li=new LoginInformation();
JTabbedPane employeTabbedPane = new JTabbedPane();
PersonalInforUpdatePanel inforUpdate = new PersonalInforUpdatePanel();
public NormalFrame()
{
try
{
jbInit();
}
catch (Exception exception)
{
exception.printStackTrace();
}
}
private void jbInit()
throws Exception
{
getContentPane().setLayout(null);
this.getContentPane().setBackground(UIManager.getColor(
"InternalFrame.inactiveTitleForeground"));
this.setTitle("员工管理系统1.0正式版 普通员工——"+li.getLogName()+" 在线");
employeTabbedPane.setBackground(UIManager.getColor(
"InternalFrame.inactiveTitleForeground"));
employeTabbedPane.setBounds(new Rectangle(6, 68, 625, 475));
inforUpdate.setBackground(UIManager.getColor(
"InternalFrame.inactiveTitleForeground"));
this.getContentPane().add(employeTabbedPane);
employeTabbedPane.add(inforUpdate, "员工个人信息修改");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -