import tkinter as tk
def on_button_click():
print("ボタンがクリックされました!")
root = tk.Tk()
root.title("ボタンのテスト")
button = tk.Button(root, text="クリックしてください", command=on_button_click)
button.pack()
root.mainloop()
ボタンクリックでイベント実行
ボタンを二つ配置
import tkinter as tk
def on_button1_click():
print("ボタン1がクリックされました!")
def on_button2_click():
print("ボタン2がクリックされました!")
root = tk.Tk()
root.title("複数ボタンのテスト")
button1 = tk.Button(root, text="ボタン1", command=on_button1_click)
button1.pack()
button2 = tk.Button(root, text="ボタン2", command=on_button2_click)
button2.pack()
root.mainloop()
エントリーフィールドと変数適用
import tkinter as tk
def on_button_click():
label.config(text="こんにちは、" + entry.get() + "さん!")
root = tk.Tk()
root.title("エントリーとラベルのテスト")
entry = tk.Entry(root)
entry.pack()
button = tk.Button(root, text="クリックしてください", command=on_button_click)
button.pack()
label = tk.Label(root, text="")
label.pack()
root.mainloop()