3

目前我正在使用一个带有在 WindowBuilder 中设计的表单的应用程序。该表单包含一个我想在 Clojure/seesaw 中使用的按钮。所以我的问题是:如何在 Clojure 中使用 Java 中定义的按钮?

亲切的问候,米切尔

4

1 回答 1

3

如果您遵循WindowBuilder 示例,您可以使用seesaw.core/select找到按钮,然后seesaw.core/listen照常使用。例如,如果您有一个"foo"在表单中命名的按钮,并且您调用该identify函数之后:

(listen (select my-window-builder-form [:#foo]) 
  :action (fn [e] ... you're code ...))
于 2012-06-10T14:31:41.007 回答