import javafx.application.Application;  
import javafx.scene.Scene;  
import javafx.scene.control.Button;  
import javafx.scene.control.Label;  
import javafx.scene.control.TextField;  
import javafx.scene.layout.GridPane;  
import javafx.stage.Stage;

public class TextFieldTest extends Application {

	public static void main(String[] args) {
		launch(args);
	}

	@Override
	public void start(Stage primaryStage) throws Exception {
		Label tfLabel = new Label("TextField");
		TextField tf = new TextField();
		GridPane root = new GridPane();
		root.addRow(0, tfLabel, tf);
		Scene scene = new Scene(root, 800, 200);
		primaryStage.setScene(scene);
		primaryStage.setTitle("TestApp Virtual Keyboard Test");
		primaryStage.show();
	}
}