- 授权协议: GPLv3
- 开发语言: Scala
- 操作系统: 跨平台
- 软件首页: https://github.com/takoi/scala-property-bindings
软件介绍
This library provides property bindings similar to Qt signal slot system, JavaFx's properties and other.
示例程序:
private class Model { val text = new Observable("count: 0") private var count = def increment() { count += 1 text() = "count: " + count } } object Example extends SimpleSwingApplication { private val model = new Model def top = new MainFrame { title = "Example" contents = new GridPanel(2, 1) { val button = new Button("Press Me!") contents += button val label = new Label { text = observes(model.text, text_=) } contents += label listenTo(button) reactions += { case ButtonClicked(_) => model.increment() } } } }
Designing Programmes
Karl Gerstner / Springer Verlag / 2007 / $499.00
Karl Gerstnera (TM)s work is a milestone in the history of design. One of his most important works is Designing Programmes, which is presented here in a new edition of the original 1964 publication. I......一起来看看 《Designing Programmes》 这本书的介绍吧!
