Clojure - 桌面显示模态对话框

使用see-saw类的alert方法可以显示模式对话框。 该方法采用文本值,该文本值需要显示在模式对话框中。

以下程序显示了如何使用它的示例。

(ns web.core
   (:gen-class)
   (:require [seesaw.core :as seesaw]))
(def window (seesaw/frame
   :title "First Example"
   :content "hello world"
   :width 200
   :height 50))
(defn -main
   [& args]
   (seesaw/show! window)
   (seesaw/alert "Hello World"))

运行上述代码后,您将看到以下窗口。

Hello World OK

❮ clojure_applications.html