Swing开发框架 Griffon
<p>Griffon 是Swing开发者的一个Groovy框架。Griffon期望提供一个稳定代码结构给Swing应用,就像Grails给web开发带来的优势一样。同时,Griffon也可能提供一个替代应用框架,替代Spring RCP,Eclipse RCP和NetBeans平台。</p> <p>示例代码:</p> <div style="border-bottom-width:1px;" class="codeHeader panelHeader"> <strong>DemoConsoleView.groovy<pre class="brush:java; toolbar: true; auto-links: false;">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}) } } }</pre> <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1323347846202" target="_blank">http://www.open-open.com/lib/view/home/1323347846202</a></p> </strong> </div>
本文由用户 fmms 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!