Clojure Desktop Changing the Value of Text

2018-12-29 17:37 更新

可以使用“config!”选项更改窗口中内容的值。 在下面的示例中配置! 选项用于将窗口内容更改为新值“Good Bye”。

(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/config! window :content "Good Bye"))

当上面的代码运行时,你会得到以下窗口。

Good Bye

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号