2014-10-03 6 views
2

새로운 ControlsFX 8.20.7 릴리스를 사용하여 마법사를 개발하려고합니다. 나는 다음과 같은 예를 살펴 찍은 : BitBucket ControlsFX을, 특히이 방법은ControlsFX 8.20.7 마법사 예제 - 마법사를 작동 시키려면

showLinearWizard() 

단순히이 API를 사용하는 방법을 이해할 수없는, 그 누구도 날은 몇 가지 예에 가기 또는 링크를 얻을 수 있습니다?

이 오류의 전체, 지금 내 코드입니다 :

public class WizardTest extends Application { 

private final ComboBox<StageStyle> styleCombobox = new ComboBox<>(); 
private final ComboBox<Modality> modalityCombobox = new ComboBox<>(); 
private final CheckBox cbUseBlocking = new CheckBox(); 
private final CheckBox cbCloseDialogAutomatically = new CheckBox(); 
private final CheckBox cbShowMasthead = new CheckBox(); 
private final CheckBox cbSetOwner = new CheckBox(); 
private final CheckBox cbCustomGraphic = new CheckBox(); 

private Stage stage; 

@Override 
public void start(Stage primaryStage) { 
    Button btn = new Button(); 
    btn.setText("Say 'Hello World'"); 
    btn.setOnAction(new EventHandler<ActionEvent>() { 

     @Override 
     public void handle(ActionEvent event) { 
      showLinearWizard(); 
     } 
    }); 

    StackPane root = new StackPane(); 
    root.getChildren().add(btn); 

    Scene scene = new Scene(root, 300, 250); 

    primaryStage.setTitle("Hello World!"); 
    primaryStage.setScene(scene); 
    primaryStage.show(); 

} 

/** 
* @param args the command line arguments 
*/ 
public static void main(String[] args) { 
    launch(args); 

} 

private void showLinearWizard() { 
    // define pages to show 

    Wizard wizard = new Wizard(); 
    wizard.setTitle("Linear Wizard"); 

    // --- page 1 
    int row = 0; 

    GridPane page1Grid = new GridPane(); 
    page1Grid.setVgap(10); 
    page1Grid.setHgap(10); 

    page1Grid.add(new Label("First Name:"), 0, row); 
    TextField txFirstName = createTextField("firstName"); 
    wizard.getValidationSupport().registerValidator(txFirstName, Validator.createEmptyValidator("First Name is mandatory")); 
    page1Grid.add(txFirstName, 1, row++); 

    page1Grid.add(new Label("Last Name:"), 0, row); 
    TextField txLastName = createTextField("lastName"); 
    wizard.getValidationSupport().registerValidator(txLastName, Validator.createEmptyValidator("Last Name is mandatory")); 
    page1Grid.add(txLastName, 1, row); 

    WizardPane page1 = new WizardPane(); 
    page1.setHeaderText("Please Enter Your Details"); 
    page1.setContent(page1Grid); 

    // --- page 2 
    final WizardPane page2 = new WizardPane() { 
     @Override 
     public void onEnteringPage(Wizard wizard) { 
      String firstName = (String) wizard.getSettings().get("firstName"); 
      String lastName = (String) wizard.getSettings().get("lastName"); 

      setContentText("Welcome, " + firstName + " " + lastName + "! Let's add some newlines!\n\n\n\n\n\n\nHello World!"); 
     } 
    }; 
    page2.setHeaderText("Thanks For Your Details!"); 

    // --- page 3 
    WizardPane page3 = new WizardPane(); 
    page3.setHeaderText("Goodbye!"); 
    page3.setContentText("Page 3, with extra 'help' button!"); 

    ButtonType helpDialogButton = new ButtonType("Help", ButtonData.HELP_2); 
    page3.getButtonTypes().add(helpDialogButton); 
    Button helpButton = (Button) page3.lookupButton(helpDialogButton); 
    helpButton.addEventFilter(ActionEvent.ACTION, actionEvent -> { 
     actionEvent.consume(); // stop hello.dialog from closing 
     System.out.println("Help clicked!"); 
    }); 

    // create wizard 
    wizard.setFlow(new LinearFlow(page1, page2, page3)); 

    System.out.println("page1: " + page1); 
    System.out.println("page2: " + page2); 
    System.out.println("page3: " + page3); 

    // show wizard and wait for response 
    wizard.showAndWait().ifPresent(result -> { 
     if (result == ButtonType.FINISH) { 
      System.out.println("Wizard finished, settings: " + wizard.getSettings()); 
     } 
    }); 
} 

private TextField createTextField(String id) { 
    TextField textField = new TextField(); 
    textField.setId(id); 
    GridPane.setHgrow(textField, Priority.ALWAYS); 
    return textField; 
} 

} 
+0

를 추가하는 것을 잊었다이었다. 정확히 무엇이 문제입니까? ControlsFX 8.20.7을 사용하고 있습니다. – Kalaschni

답변

1

문제는 내가이 소스 나를 위해 작동

openjfx-dialogs.jar 
+0

타사 항아리가 필요하지 않습니다. controlsFX 8.20.7 jar – Kalaschni

+0

만 잘못되었습니다. openjfx-dialogs.jar이 필요합니다. 이것은 릴리스 노트에 있습니다. – miniHessel

+0

아, 죄송합니다. Maven을 사용하고 controlsFX를 의존성으로 추가하면 openjfx-dialogs.jar가 자동으로 추가됩니다 (Inheritance). – Kalaschni