您好,登錄后才能下訂單哦!
#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()
免責(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)容。