您好,登錄后才能下訂單哦!
1.升級上一節(jié)的Hello World,代碼實(shí)現(xiàn)如下
package com.dengyunshuo.demo;
import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.Background;
import javafx.scene.layout.BackgroundFill;
import javafx.scene.paint.Color;
import javafx.scene.paint.Paint;
import javafx.scene.text.Font;
import javafx.stage.Stage;
/**
?* @author dengdashuai
?* @date 2019-09-03
?*/
public class HelloWorld extends Application {
? ? /**
? ? ?* 啟動主窗口
? ? ?* @param primaryStage
? ? ?* @throws Exception
? ? ?*/
? ? public void start(Stage primaryStage) throws Exception {
? ? ? ? // 設(shè)置主窗口標(biāo)題
? ? ? ? primaryStage.setTitle("Hello World");
? ? ? ? /*
? ? ? ? ?* 創(chuàng)建一個標(biāo)簽對象
? ? ? ? ?* 標(biāo)簽上的文本是“Hello World”
? ? ? ? */
? ? ? ? Label label = new Label("Hello World");
? ? ? ? // 設(shè)置標(biāo)簽在父容器的位置-居右
? ? ? ? label.setAlignment(Pos.CENTER_RIGHT);
? ? ? ? // 設(shè)置標(biāo)簽上的文本字體和大小-Arial和20
? ? ? ? Font arialFont = new Font("Arial", 30);
? ? ? ? label.setFont(arialFont);
? ? ? ? // 設(shè)置標(biāo)簽上的文本字體顏色-藍(lán)色
? ? ? ? label.setTextFill(Color.web("#0000FF"));
? ? ? ? // 填充背景方式對象
? ? ? ? BackgroundFill backgroundFill = new BackgroundFill(Paint.valueOf("black"),null,null);
? ? ? ? // 設(shè)置背景色
? ? ? ? label.setBackground(new Background(backgroundFill));
? ? ? ? /*
? ? ? ? ?* 創(chuàng)建一個場景對象
? ? ? ? ?* 場景中的包含內(nèi)容是一個標(biāo)簽
? ? ? ? ?* 場景寬高分別為500
? ? ? ? ?*/
? ? ? ? Scene scene = new Scene(label,500,500);
? ? ? ? // 將場景放入到主窗口
? ? ? ? primaryStage.setScene(scene);
? ? ? ? // 顯示窗口
? ? ? ? primaryStage.show();
? ? }
? ? /**
? ? ?* 程序主入口
? ? ?* @param args
? ? ?* @throws Exception
? ? ?*/
? ? public static void main(String[] args) throws Exception {
? ? ? ? // 啟動應(yīng)用
? ? ? ? HelloWorld.launch(args);
? ? }
}
2.運(yùn)行截圖
3.升級的Hello World已經(jīng)完成,本章到此結(jié)束,下一節(jié)我們將再次升級這個Hello World,敬請關(guān)注哦!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。