TornadoFX大杂烩

栏目: Java · 发布时间: 7年前

内容简介:注意:文章首发:
compile 'no.tornado:tornadofx:1.7.17'
compileKotlin {
    kotlinOptions.jvmTarget = "1.8"
}

HelloWorld

import javafx.application.Application
import tornadofx.*

class App:tornadofx.App(MainView::class,MainStylesheet::class)

class MainView:View() {
    override val root = vbox {
        label("Hello World")
    }
}

class MainStylesheet:Stylesheet() {
    init {
        label {
            fontSize = 20.px
        }
    }
}

fun main(args:Array<String>) {
    Application.launch(App::class.java,*args)
}

进阶之Observable

import javafx.application.Application
import javafx.collections.FXCollections
import tornadofx.*

class App:tornadofx.App(MainView::class,MainStylesheet::class)

class Person(id: Int, name: String) {
    var id: Int by property(id)
    var name: String by property(name)
}

class MainView:View() {
    private val persons = FXCollections.observableArrayList(
            Person(10, "Ant"),
            Person(20, "Bee"),
            Person(30, "Cat")
    )
    override val root = tableview(persons) {
        column("ID", Person::id)
        column("name", Person::name)
    }
}

class MainStylesheet:Stylesheet() {
    init {
        label {
            fontFamily = "Noto Sans CJK SC Medium"
            fontSize = 20.px
        }
    }
}

fun main(args:Array<String>) {
    Application.launch(App::class.java,*args)
}

注意:

  • JavaFX可能对中文支持不好,最要手动设置中g字体

文章首发: https://baijifeilong.github.io


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Introduction to Tornado

Introduction to Tornado

Michael Dory、Adam Parrish、Brendan Berg / O'Reilly Media / 2012-3-28 / USD 23.99

Tornado is a scalable, non-blocking web server and web application framework written in Python. It is also light-weight to deploy, fun to write for, and incredibly powerful. Tornado was written with p......一起来看看 《Introduction to Tornado》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

在线进制转换器
在线进制转换器

各进制数互转换器

MD5 加密
MD5 加密

MD5 加密工具