Desktop Displaying a Modal Dialog Box

2018-12-29 17:44 更新

可以使用跷跷板类的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

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

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号