当前位置: 首页 > 工具软件 > Azul GUI > 使用案例 >

GUI系列-anchor的使用

秦宏硕
2023-12-01

anchor是表示对齐方式的组件,W表示左,右对齐为E,顶对齐N,底对齐S,具体使用方法如下

import tkinter
root = tkinter.Tk()
label_title = tkinter.Label(root,text="1、你对本课程的评价是").pack(anchor = tkinter.W)

R1 = tkinter.Radiobutton(root,text="好").pack(anchor = tkinter.W,padx=20)#anchor就是位置,W表示左,右对齐为E,顶对齐N,底对齐S
R2 = tkinter.Radiobutton(root,text="较好").pack(anchor = tkinter.W,padx=20)#padx就表示和左侧边框距离多少个像素
R3 = tkinter.Radiobutton(root,text="差").pack(anchor = tkinter.W,padx=20)#如果只有pack()那么就是默认的居中对齐
R4 = tkinter.Radiobutton(root,text="极差").pack(anchor = tkinter.W,padx=20)
label=tkinter.Label(root)
label.pack(anchor = tkinter.W)#加了这个部分之后窗口下方有留白
root.mainloop()

 类似资料: