W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
文本字段可以在文本類的幫助下顯示。 下面的程序顯示了如何使用它的示例。
(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 textfield (seesaw/text :text "This is a text field" :editable? false :columns 50)) (display textfield))
在上面的代碼中,首先創(chuàng)建一個(gè)文本字段變量,它來自于翹板庫的文本類。 接下來,文本字段的文本設(shè)置為“這是文本字段”。 然后通過將editable屬性設(shè)置為false,將文本字段設(shè)置為靜態(tài)字段。
當(dāng)上面的代碼運(yùn)行時(shí),你會(huì)得到以下窗口。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: