위젯을 재조정 할 때 텍스트를 나머지 위젯과 함께 확장하고 싶습니다.python tkinter 위젯 스케일
다음은 클릭 앤 드래그로 위젯의 크기를 조절하는 코드입니다. 그게 잘 작동하지만, 텍스트가 비례하지 않습니다.
import tkinter as tk
#Create & Configure root
root = tk.Tk()
Grid.rowconfigure(root, 0, weight=1)
Grid.columnconfigure(root, 0, weight=1)
#Create & Configure frame
frame=tk.Frame(root)
frame.grid(row=0, column=0, sticky=N+S+E+W)
#Create a 5x10 (rows x columns) grid of labels inside the frame
for row_index in range(5):
Grid.rowconfigure(frame, row_index, weight=1)
for col_index in range(10):
Grid.columnconfigure(frame, col_index, weight=1)
btn = tk.Label(frame, text="Row %s: Col %s" % (row_index, col_index),
background = "#F8FC10") #create a label inside frame
btn.grid(row=row_index, column=col_index, sticky=N+S+E+W)
root.mainloop()
나는 텍스트 위젯의 나머지 부분과 확장하고자합니다.
위젯은 크기가 좋지만 텍스트는 그렇지 않습니다.
클릭 앤 드래그로 크기 조정되는 위젯으로 텍스트 크기를 조절할 수 있습니까?