Tkinter는 창 내에서 위젯을 구성하기 위한 포괄적인 그리드 기하학 관리자를 제공합니다. 그리드의 중요한 속성 중 하나는 컨테이너에 여유 공간이 있을 때 열과 행이 확장되는 방식을 제어하는 "가중치" 옵션입니다.
기본적으로 각 그리드 셀의 가중치는 0입니다. 초기 크기 이상으로 커지지 않습니다. 그러나 행이나 열에 0이 아닌 가중치를 할당하면 추가 공간이 확보되면 확장이 시작됩니다.
가중치 작동 시연
다음 코드를 고려하세요.
import tkinter as tk root = tk.Tk() root.geometry("200x100") f1 = tk.Frame(root, background="bisque", width=10, height=100) f2 = tk.Frame(root, background="pink", width=10, height=100) f1.grid(row=0, column=0, sticky="nsew") f2.grid(row=0, column=1, sticky="nsew") root.grid_columnconfigure(0, weight=0) root.grid_columnconfigure(1, weight=0) root.mainloop()
이 코드는 f1과 f2라는 두 프레임이 나란히 배치된 창을 만듭니다. 열에 가중치가 적용되지 않으므로 사용 가능한 공간은 모두 사용되지 않은 상태로 유지됩니다.
import tkinter as tk root = tk.Tk() root.geometry("200x100") f1 = tk.Frame(root, background="bisque", width=10, height=100) f2 = tk.Frame(root, background="pink", width=10, height=100) f1.grid(row=0, column=0, sticky="nsew") f2.grid(row=0, column=1, sticky="nsew") root.grid_columnconfigure(0, weight=1) root.mainloop()
첫 번째 열에 가중치 1을 추가하면 창이 확대될 때 추가 공간이 첫 번째 열에 분배됩니다.
import tkinter as tk root = tk.Tk() root.geometry("200x100") f1 = tk.Frame(root, background="bisque", width=10, height=100) f2 = tk.Frame(root, background="pink", width=10, height=100) f1.grid(row=0, column=0, sticky="nsew") f2.grid(row=0, column=1, sticky="nsew") root.grid_columnconfigure(0, weight=1) root.grid_columnconfigure(1, weight=3) root.mainloop()
열에 서로 다른 가중치를 할당하면 초과 공간을 비례적으로 분배할 수 있습니다. 이 예에서 두 번째 열의 가중치는 첫 번째 열의 3배이므로 비율은 1:3입니다.
가중치의 힘은 창 크기 조정에 대한 동적 반응에 있습니다. 창이 확장되면 위젯은 상대적인 비율을 유지하면서 사용 가능한 공간에 맞춰 조정됩니다. 이러한 유연성은 반응성이 뛰어나고 적응성이 뛰어난 그래픽 사용자 인터페이스를 만드는 데 매우 중요합니다.
위 내용은 Tkinter의 그리드 기하학에서 가중치는 어떻게 기능합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!