gpt4 book ai didi

kotlin - 如何将 ItemViewModel 绑定(bind)到组合框和整个表单?

转载 作者:行者123 更新时间:2023-12-02 12:42:47 25 4
gpt4 key购买 nike

我有课UserItemViewModel为了它。

class User(name: String, type: Int, isAdmin: Boolean) {

var name by property<String>(name)
fun nameProperty() = getProperty(User::name)

var type by property<Int>(type)
fun typeProperty() = getProperty(User::type)

var isAdmin by property<Boolean>(isAdmin)
fun isAdminProperty() = getProperty(User::isAdmin)

}

class UserModel : ItemViewModel<User>() {
val name = bind { item?.nameProperty() }
val type = bind { item?.typeProperty() }
val isAdmin = bind { item?.isAdminProperty() }
}

另外我有 ViewFormController
class ChooseUserView : View() {

val ctrl: ChooseUserCtrl by inject()

override val root = form {

fieldset("Choose user") {

field("Name") {
combobox<User> {
items = ctrl.users
selectionModel.select(0)
}
}

field("Psw") {
textfield {
whenVisible {
ctrl.model.isAdmin
}
}
}
}
}

}

class ChooseUserCtrl : Controller() {

val view: ChooseUserView by inject()

val users = FXCollections.observableArrayList<User>()
val model = UserModel()

init {
users.add(User("disp", 1, false))
users.add(User("admin", 2, true))
}

}

我想将用户列表绑定(bind)成这样
  • 在组合框中我想看到名字,而不是像这样的地址
    image
  • combobox索引正在改变我希望看到 textfield("Psw") 的绑定(bind)启用基于 bool 属性 isAdmin .
  • 最佳答案

    这是tornadofx作者的答案:

    干得好:

    class User() {
    constructor(name: String, type: Int, isAdmin: Boolean): this() {
    this.name = name
    this.type = type
    this.isAdmin = isAdmin
    }

    val nameProperty = SimpleStringProperty()
    var name by nameProperty

    val typeProperty = SimpleIntegerProperty()
    var type by typeProperty

    val isAdminProperty = SimpleBooleanProperty()
    var isAdmin by isAdminProperty

    val passwordProperty = SimpleStringProperty()
    var password by passwordProperty
    }

    class UserModel(user: User? = null) : ItemViewModel<User>(user) {
    val name = bind(User::nameProperty)
    val type = bind(User::typeProperty)
    val isAdmin = bind(User::isAdminProperty)
    val password = bind(User::passwordProperty)
    }


    class ChooseUserView : View() {
    val ctrl: ChooseUserCtrl by inject()
    val selectedUser = UserModel(ctrl.users.first())

    override val root = form {
    fieldset("Choose user") {
    field("Name") {
    combobox(selectedUser.itemProperty, ctrl.users) {
    cellFormat {
    text = it.name
    }
    }
    }

    field("Psw") {
    visibleWhen(selectedUser.isAdmin)
    textfield(selectedUser.password)
    }
    }
    }

    }

    class ChooseUserCtrl : Controller() {
    val users = FXCollections.observableArrayList<User>()

    init {
    users.add(User("disp", 1, false))
    users.add(User("admin", 2, true))
    }
    }

    关于kotlin - 如何将 ItemViewModel 绑定(bind)到组合框和整个表单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49387111/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com