Xin chào mọi người,
Mình đang học Java - Form trên trường, ở lớp code thì add components bình thường, nhưng khi về nhà mở eclipse lên code lại thì bị lỗi :
"The method add(Component) in type Container is not applicable for argument (JLabel)"
Đây là code của mình :
import javax.swing.JFrame;
import javax.swing.JLabel;
/**
*
*/
/**
* @author Hoang Viet
*
*/
public class hello extends JFrame {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
// new window
hello wMain = new hello();
// end program as closing window.
wMain.setDefaultCloseOperation(EXIT_ON_CLOSE);
// show the window
wMain.setVisible(true);
}
public hello(){
JLabel lblUsername = new JLabel("Name");
JLabel lblPassword = new JLabel("Pwd");
//set window title
setTitle("Swing Demo");
//set size
setSize(250, 150);
// reset null layout
setLayout(null);
// add labels to window
add(lblUsername);
//add();
}
}
}
Mong mọi người giúp đỡ. Xin cảm ơn !