0
私はTkinterボタンに関する質問があります 3つの異なるボタンを設定していますが、異なるフォントサイズを使用していますが、すべて同じフォントサイズ - ボタンのサイズ私は置きます。Tkinter複数のボタン - 異なるフォントサイズ
どうすれば解決できますか?複数のボタン、異なるフォントサイズ? はどうやらすべてのボタンだけではなく
tk = Tk()
tk.wm_title("Knowledge")
frame = Frame(width=768, height=576, bg="", colormap="new")
frame.pack_propagate(0)
frame.pack()
b = Button(frame, text = "Text", compound="left", command=callback, highlightthickness=0, font = Font(family='Helvetica', size=20, weight='bold'), bd=0, bg ="white")
b.pack()
b.place(x=100, y=100)
a = Button(frame, text = "my", compound="left", command=callback, highlightthickness=0, font = Font(family='arial', size=24, weight='bold'), bd=0, bg ="white")
a.pack()
a.place(x=100, y=140)
c = Button(frame, text = "Know", compound="left", command=callback, highlightthickness=0, font = Font(family='Helvetica', size=18, weight='bold'), bd=0, bg ="white")
c.pack()
c.place(x=100, y=180)
tk.mainloop()