Login
Remember
Register
Ask a Question
How can we create a class of sample application in JavaFX?
0
votes
asked
May 5, 2022
in
JavaFX
by
sharadyadav1986
How can we create a class of sample application in JavaFX?
javafx-application
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 5, 2022
by
sharadyadav1986
In JavaFX, we can create a class of sample application by using following codes:
public class JavafxSample extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
}
}
...