I have a JPanel cPanel
, and a TextField resultField
imported from JDK 8's javafx.scene.control.TextField
.
Now I want to cPanel.add(resultField,BorderLayout.NORTH)
, Eclipse give me an error:
The method add(String, Component) in the type Container is not applicable for the arguments (TextField, String)
How do I add resultField
to cPanel
properly?