Clojure - 桌面显示标签



可以使用标签类来显示标签。关于如何使用它的示例在下文的程序中显示。

(ns web.core
   (:gen-class)
   (:require [seesaw.core :as seesaw]))
(defn -main [& args]
   (defn display
      [content]
      (let [window (seesaw/frame :title "Example")]
         (-> window
            (seesaw/config! :content content)
            (seesaw/pack!)
            (seesaw/show!))))
   (def label (seesaw/label
      :text "This is a label too"
      :background :white
      :foreground :black
      :font "ARIAL-BOLD-10"))
   (display label))

在上文的代码中,首先创建了一个标签变量,该变量属于 seesaw 库的标签类。接下来,将标签文本设置为“这也算一个标签”。然后,相应地设置背景、前景色和字体。

运行上文的代码时,将得到下述窗口。

Displaying Labels
clojure_applications.htm
广告