0 votes
in JavaFX by
How can we create a class of sample application in JavaFX?

1 Answer

0 votes
by
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 {        

   }      

}

Related questions

0 votes
asked May 5, 2022 in JavaFX by sharadyadav1986
0 votes
asked May 5, 2022 in JavaFX by sharadyadav1986
...