tkinter의 프레임
from tkinter import *
class Frames:
def makeFrame(self):
root = Tk(className="X Name")
root.title("X title")
root.geometry("900x900")
root.resizable(0,0)
def raise_frame(frame):
frame.tkraise()
frame1 = Frame(root, width=600)
frame2 = Frame(root)
for frame in (frame1,frame2):
frame.grid(row=0, column=0, padx=50, pady=200, sticky='news')
Label(frame1, text='Welcome to tkinter Frames',font=("Courier",40)).pack()
Button(frame1, text="Frame 2", width=10,height=2, font=("Courier", 30), command=lambda:raise_frame(frame2)).pack(pady=10)
Label(frame2, text='Frame 2', font=("Courier",40)).pack()
Button(frame2, text="Frame 1",width=10,height=2, font=("Courier", 30), command=lambda:raise_frame(frame1)).pack(pady=10)
raise_frame(frame1)
root.mainloop()
frame = Frames().makeFrame()
지원 및 도움말 공유를 좋아합니다<3
Reference
이 문제에 관하여(tkinter의 프레임), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/akramnarejo/frames-in-tkinter-46kb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)