from tkinter import * if __name__ == '__main__': win = tkinter.Tk() # 窗口 win.title('南风丶轻语') # 标题 screenwidth = win.winfo_screenwidth() # 屏幕宽度 screenheight = win.winfo_screenheight() # 屏幕高度 width = 980 height = 300 x = int((screenwidth - width) / 2) ...
mylabel.config(bd=2,relief=SOLID) #设置边框的宽度 mylabel.config(wraplength=160) #设置文字回卷宽度为160像素 mylabel.config(anchor=W) #设置内容在标签内部的左侧 mylabel.config(font=('宋体',18)) #设置字体 mylabel.pack(side=TOP) #设置标签在窗口的顶端 mainloop() #启动事件循环 1. 2. 3. ...
importtkinterfromtkinterimport*defevent():print('当前的值:{}'.format(label.cget('text'))) label.config(text='新值')if__name__=='__main__': win= tkinter.Tk()#窗口win.title('南风丶轻语')#标题screenwidth = win.winfo_screenwidth()#屏幕宽度screenheight = win.winfo_screenheight()#屏...
1、pack布局和grid布局不能混用,但place布局可以和pack、grid布局混用,尤其在设计较复杂的布局时,用place进行精细布局是非常必要的。 2、要准确的布局,要了解widget的默认边界宽度(borderwidth) Label,标签,默认为1像素 Button,功能按钮,默认为2像素 Entry,文本框,默认为2像素 Radiobutton,选项按钮,默认为2像素 Chec...
需要指定image或者bitmap属性,然后再使用width, height来控制。默认的button是text类型, width, heigth表示字符个数和行数,指定那些后,意义就变成像素。例如:import Tkinter root = Tkinter.Tk()b1 = Tkinter.Button(root, bitmap="gray50", width=10, height=10)b1.pack()root.mainloop()...
不过没关系,学习框架只是为了有趣的学习语言,况且tkinter是原生的。其他伟大的GUI框架,比如wxPython却不支持3.0以上。 开始了 fromtkinterimport*# 初始化tkroot=Tk()# 设置窗口的titleroot.title('Hello')# 指定master、标题label=Label(root,text='Hello')# 显示labellabel.pack()# 指定内置位图# 其他位图:error...
Label(root,text=xtext,fg='red',font=('楷体',40), image = im,compound='center').pack() AI代码助手复制代码 结果图示 Mark:在标签label中同时放入文本和图片,要使用label的compound属性。 使用tkinter解决的一些小问题 Label的weight参数 之前做的一个项目中也是用label显示图片,height参数可以使用 ...
1 import tkinter 2 root=tkinter.Tk() #生成root主窗口 3 label=tkinter.Label(root,text='Hello,GUI') #生成标签 4 label.pack() #将标签添加到主窗口 5 button1=tkinter.Button(root,text='Button1') #生成button1 6 button1.pack(side=tkinter.LEFT) #将button1添加到root主窗口 ...
pack就是Tkinter中的布局管理器之一 tk.Label(root, text="标签", background='yellow', height='5', width='50', cursor="plus").pack() tk.Label(root, text="标签", background='pink', height='5', width='50', cursor="cross", anchor='e', relief='groove').pack()...