package controlsSize;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.stage.Stage;
/**
* @created 23/04/2013
* @author Jonathan Giles
*/
public class ControlSizes extends Application {
public static void main(String[] args) {
launch(args);
}
@Override public void start(Stage primaryStage) throws Exception {
AnchorPane root = FXMLLoader.load(getClass().getResource("IssueTextFieldWidth2.fxml").toURI().toURL());
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
}
}