delete(0, tk.END) # クリア print(entry.get()) # '' entry.place(x=8, y=8) 入力された値はentry.get()で取得できる。PythonのTkinterを使ってみる - Qiita テキスト入力(複数行)text = tk.Text(root, width=30, height=10) text.insert(tk.END, 'Hello') # 初期値 print(text.get(...
手入力枠の設置と、手入力内容をgetで取得する importtkinterdefclick_btn():txt=entry.get()button["text"]=txtroot=tkinter.Tk()root.resizable(False,False)root.geometry("400x200")entry=tkinter.Entry(width=20)entry.place(x=20,y=20)button=tkinter.Button(root,text="書いた内容をボタンの名前と...
thread_stopwatch,screenshot_state,timer#穴掘り法の現在地を初期化location_y=2location_x=2#入力欄に何も入力されていなかった場合iftxt.get()=="":maze_ready=Falses1.set("値を入力してください。")#偶数または5未満の場合elif(int(txt.get())+2)%2==0orint(txt.get())+2<7:maze_rea...
1行入力 Entry ウィジェット作成・配置 defcreate_widgets(self):## ~上記記載分を省略~## 上記の続きに追加# 1行入力## justify:文字寄せ(center or left or right)## sticky:スペースが空いている場合の動き(tk.W + tk.E 縦横に広がる)entry_fpath=tk.Entry(fm_select,justify="left"...
CTkEntry(master=self, placeholder_text="テキストを入力してください", width=220, font=self.fonts) self.textbox.place(x=60, y=50) # ボタンを表示する self.button = customtkinter.CTkButton(master=self, text="クリックしてね", command=self.button_function, font=self.fonts) self....