Groovy Swing Explorer文件放置处理程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Groovy Swing Explorer文件放置处理程序相关的知识,希望对你有一定的参考价值。
{ // TFileDropHandler.groovy // Laurence Toenjes - 2010-08-18 // Based on 1999 example from Cay Horstmann found at // http://java.itags.org/java-core-gui-apis/33457/ // dropped files closure example: { files -> println files }; { // ctor aSwingControl.setDropTarget( dropTarget ) } // -------------------------------------------------------- { onDroppedFiles = a_onDroppedFiles } // provide visual feedback } } else { event.rejectDrop(); } try { // file flavor } } } } // end for } // end drop } // -------------------------------------------------------- // simple example f.add( ta ) files.each { println it } } ) f.show() } }
以上是关于Groovy Swing Explorer文件放置处理程序的主要内容,如果未能解决你的问题,请参考以下文章
Groovy使用 SwingBuilder 构建 Swing 窗口 ( 创建一个 Swing 构造器 | 配置 Swing 窗口的一系列属性 | 设置 Swing 窗口显示 )