📄 mvcdemo.groovy
字号:
package groovy.modelimport java.awt.BorderLayoutimport javax.swing.BorderFactoryimport groovy.swing.SwingBuilder/** * */class MvcDemo { def frame def swing void run() { def swing = new SwingBuilder() def frame = swing.frame(title:'MVC Demo', location:[200,200], size:[300,200]) { menuBar { menu(text:'Help') { menuItem() { action(name:'About', closure:{ showAbout() }) } } } panel(layout:new BorderLayout()) { scrollPane(constraints:BorderLayout.CENTER) { table() { tableModel(list:[ ['name':'James', 'location':'London'], ['name':'Bob', 'location':'Atlanta'] ]) { propertyColumn(header:'Name', propertyName:'name') propertyColumn(header:'Location', propertyName:'location') } } } } } frame.show() } void showAbout() { def pane = swing.optionPane(message:'This demo shows how you can create UI models from simple MVC models') def dialog = pane.createDialog(frame, 'About MVC Demo') dialog.show() }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -