0% found this document useful (0 votes)
12 views1 page

Proyecto

Ejemplo de como a traves de una clase se heredan atributos en java
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

Proyecto

Ejemplo de como a traves de una clase se heredan atributos en java
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

/*

* To change this license header, choose License Headers in Project Properties.


* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package proyecto;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.image.Image;
import javafx.stage.Stage;
/**
*
* @author Juannez
*/
public class Proyecto extends Application {

@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("inscripcion.fxml"));
stage.getIcons().add(new Image("recursos/icono.png"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.setTitle("Escuela Secuendaria Tecnica N°55");

scene.getStylesheets().add(Proyecto.class.getResource("personalizar.css").toExterna
lForm());
stage.setResizable(false);
stage.show();

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

You might also like