桌面显示的模态对话框



可以使用 seesaw 类的 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.htm
广告