Griffon 0.9.5-rc1 用Groovy开发Swing界面
Griffon 团队今天发布了 Griffon 0.9.5-rc1,Griffon 是Swing开发者的一个Groovy框架。Griffon期望提供一个稳定代码结构给Swing应用,就像Grails给web开发带来的优势一样。同 时,Griffon也可能提供一个替代应用框架,替代Spring RCP,Eclipse RCP和NetBeans平台。
该版本修复的 bug 列表请看:
http://jira.codehaus.org/secure/ReleaseNote.jspa?projectId=11833&version=17352
完整的发行说明:here.
示例代码:
application(title:'DemoConsole', pack:true, locationByPlatform:true) { panel(border:emptyBorder(6)) { borderLayout() scrollPane(constraints:CENTER) { textArea(text:bind(target:model, targetProperty:'scriptSource'), enabled: bind {model.enabled}, columns:40, rows:10) } hbox(constraints:SOUTH) { button("Execute", actionPerformed:controller.&executeScript, enabled: bind {model.enabled}) hstrut(5) label("Result:") hstrut(5) label(text:bind {model.scriptResult}) } } }
相关推荐
MrHaoNan 2020-02-15
Pineapple 2014-05-29
shenxiuwen 2019-11-30
lightindark 2011-04-16
码路心路知行合一 2012-03-14
ORACLEFANS 2014-05-28
hyzhym 2014-05-28
chengrile 2012-07-05
guojing 2011-06-09
XuDTone 2011-03-22
淡风wisdon大大 2014-08-20
HerryDong 2010-06-12
jacky的部落 2008-08-14
fhd00 2007-07-07
leeagle 2011-10-12