Skip to content

Instantly share code, notes, and snippets.

@jesuino
Created January 11, 2015 04:19
Códigos da postagem sobre WEB View do Aprendendo-javafx.blogspot.com
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.web.WebView;
import javafx.scene.Scene;
/**
*
* @author william
*/
public class SimplesWEBView extends Application {
@Override
public void start(Stage s) {
// O nó em sí, que será mostrado
WebView webView = new WebView();
// A engine é do tipo WebEngine
webView.getEngine().load("http://aprendendo-javafx.blogspot.com");
// criamos a cena e adicionamos no nosso stage
s.setScene(new Scene(webView));
// mostramos
s.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment