溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

tkinter_Entry和text

發(fā)布時(shí)間:2020-06-27 13:10:06 來(lái)源:網(wǎng)絡(luò) 閱讀:741 作者:qq5a16e6241946e 欄目:編程語(yǔ)言
#encoding=utf-8
import tkinter as tk
#創(chuàng)建窗口,設(shè)置標(biāo)題,大小
window = tk.Tk()
window.title("我的窗口")
window.geometry("400x200")

#創(chuàng)建一個(gè)Entry輸入框,輸入框輸入字符以星號(hào)展示,show=None,展示原文,show="1"
#展示1
entry = tk.Entry(window,show="*")
entry.pack()

#定義函數(shù):獲取Entry輸入框的內(nèi)容并且插入到text文本框中
#插入到text文本框的當(dāng)前光標(biāo)位置
def insert_point():
    entry_content = entry.get()
    text.insert("insert",entry_content)#text.insert("1.1",entry_content)插入到text文本框1行1列位置

#定義函數(shù):獲取Entry輸入框的內(nèi)容并且插入到text文本框中
#插入到text文本框的末尾
def insert_end():
    entry_content = entry.get()
    text.insert("end",entry_content)

#創(chuàng)建Button,執(zhí)行insert_point函數(shù)
button_1 = tk.Button(window,text="insert point",width=15,height=2,font=10,command = insert_point)
button_1.pack()
#創(chuàng)建Button,執(zhí)行insert_end數(shù)
button_2 = tk.Button(window,text="insert end",width=15,height=2,font=12,command=insert_end)
button_2.pack()

#創(chuàng)建Text輸入框
text = tk.Text(window,width=20,height=2)
text.pack()

#循環(huán)檢測(cè)窗口
window.mainloop()
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI