0
との二乗のボタンがどのように私は二乗のボタンを作成するのですか?私はパックマネージャーを使用していますが、私はグリッドなどに変更したくありません。Tkinterの:パックマネージャー
from tkinter import*
import time
def close():
root.destroy()
root = Tk()
root.configure(background="blue")
root.attributes('-fullscreen', True)
frame1 = Frame(root)
frame1.pack(side=TOP, fill=X, anchor=N)
close_button = Button(frame1, width=5, bg='red', fg='white', font=('Helvetica', 10), text='X', command=close)
close_button.pack(side=RIGHT, anchor=E)
frame2 = Frame(root, height=100, bg='red')
frame2.pack(side=TOP, fill=X, anchor=N)
video_button = Button(frame2, width=5, fg='white', font=('Helvetica', 10), text='X', command=close)
video_button.pack(side=RIGHT, anchor=E)
music_button = Button(frame2, width=5, bg='red', fg='white', font=('Helvetica', 10), text='X', command=close)
music_button.pack(side=RIGHT, anchor=E)
root.mainloop()
ありがとうございます。
は、今私はそれを得ました。しかしプリセットなしでtkinterをインポートすることは可能ですか? (私はtkinter import *から "tkinterを"書く "の代わりに) –
実際には、サイズ設定がフォントに依存するということはとても馬鹿です。 –
' from tkinter import * 'は"ワイルドカードのインポート "と呼ばれています。コードやバグを読みにくくなるため、悪い習慣とみなされ、PEP8に反対します。ですから、私はそれをお勧めしませんが、望むならば、すべてから 'tk.'接頭辞を削除することができます。 – Novel