■ Label 클래스의 place_info 메소드를 사용해 레이블 위치를 구하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
from tkinter import * tk = Tk() tk.geometry("500x500") label = Label(tk, text = "테스트") label.place(x = 100, y = 100) placeInfoDictionary = label.place_info() print(placeInfoDictionary) print("x = ", placeInfoDictionary["x"]) print("y = ", placeInfoDictionary["y"]) tk.mainloop() """ {'in': <tkinter.Tk object .>, 'x': '100', 'relx': '0', 'y': '100', 'rely': '0', 'width': '', 'relwidth': '', 'height': '', 'relheight': '', 'anchor': 'nw', 'bordermode': 'inside'} x = 100 y = 100 """ |