源程序:
package x ;
import java.awt.Color ;
import javax.swing.JFrame ;
public class Test{
public static void main(String[] args){
JFrame f = new JFrame("图书馆管理系统登录") ;
f.setSize(230 , 80) ;
f.setBackground(Color.YELLOW) ;
f.setLocation(300 , 100) ;
f.setVisible(true) ;
}
}
运行结果: