/* * Created on May 24, 2012 */ package mytests; import javafx.application.*; import javafx.scene.*; import javafx.scene.control.*; import javafx.scene.text.*; import javafx.stage.*; /** * @author mifeld */ public class ItalicTest extends Application { @Override public void start(Stage stage) throws Exception { Label lbl = new Label("AAAAA BBBBB"); Font f = Font.font("Times",FontWeight.NORMAL,FontPosture.ITALIC,20); lbl.setFont(f); Scene scene = new Scene(lbl, 300, 250); stage.setScene(scene); stage.show(); } public static void main(String[] args) { Application.launch(args); } }