2017年10月1日 星期日

Tkinter Text Entry 输入多行本文

Tkinter Text Entry 输入多行本文




from tkinter import *
import tkinter as tk
class myapp(tk.Tk):
    def __init__(self):
        tk.Tk.__init__(self)
        self.text=tk.Text(self)
        self.button=tk.Button(self,text='save',command=self.on_button)
        self.button1=tk.Button(self,text='quit',command=quit)
        self.button.pack()
        self.button1.pack()
        self.text.pack()
    def on_button(self):
        mydiary=open('mydiary.txt','a')
        mydiary.write(self.text.get(1.0,END)+'\n')
        mydiary.close()

app=myapp()
app.mainloop()


沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...