tkinter.Button(root, text="绘制蓝色线条", command=draw_lines_blue).place(x=95, y=420) tkinter.Button(root, text="绘制红色线条", command=draw_lines_red).place(x=200, y=420) # 绘制矩形框create_rectangle() # 需要知道矩形的左上角和右下角的坐标然后绘制成一个矩形通过矩形绘制一个内切圆 ...
text = Text(main_win, width=40, height=20, wrap=NONE) text.pack() print(text.info()) 1. 2. 3. text的布局信息如下: {‘in’: <tkinter.Tk object .>, ‘anchor’: ‘center’, ‘expand’: 0, ‘fill’: ‘none’, ‘ipadx’: 0, ‘ipady’: 0, ‘padx’: 0, ‘pady’: 0,...
Button(text='删除', command=delete).pack() win.mainloop() 3、添加滚动条 #-*- encoding=utf-8 -*-importtkinterfromtkinterimport*if__name__=='__main__': win= tkinter.Tk()#窗口win.title('南风丶轻语')#标题screenwidth = win.winfo_screenwidth()#屏幕宽度screenheight = win.winfo_screenh...
text.config(state=DISABLED) 4.获取一个输入内容插入 from tkinter import * #生成主窗体 root=Tk() root.title('Text组件测试') #设置滚动条 scroll=Scrollbar() #设置text的大小 text=Text(root,width=40,height=20) #将滚动条填充,放在右边,y是竖直方向 text.pack(side=LEFT,fill=Y) scroll.pack(side...
win = tkinter.Tk() #设置标题 win.title("sunck") #设置大小和位置 win.geometry("400x400+200+20") ''' 文本控件,用于显示多行文本 ''' #height显示的行数 text = tkinter.Text(win, width=30, height=4) text.pack() str = '''If there is anyone out there who still doubts that America...
在Python中,可以使用tkinter库来创建GUI(图形用户界面)应用程序,并设置文本框的大小。下面是一个简单的示例代码: importtkinterastkroot=tk.Tk()# 创建文本框text_box=tk.Text(root, width=50, height=10)text_box.pack()root.mainloop() 在上面的代码中,我们使用tkinter库创建一个名为root的窗口,然后使用Text...
【文本框】控件用于输入多行文本,Python tkinter中实现【文本框】的控件是tk.Text类。 构造函数: tk.Text(parent, option, ...) 属性(option)包括“宽度(width)”、“高度(height)”等。 [width]:文本框每行可以容纳的字符数。 [height]:文本框接受的行数。
tkinter.Text()方法/步骤 1 这是通过for循环并直接按顺序插入数据的表格,也就代表可以做成可编辑的表格。先上代码,如图 2 先引入GUI模块tkinterimport tkinter 3 实例化主窗口root = tkinter.TK()4 双重for循环得出表格横纵坐标for r in range(3): #横坐标 for c in range(3):#纵坐标 index = str...
from tkinterimport*defgo():txt='窗口的左上角坐标为:(%s,%s)\n窗口的高度为:%s窗口的宽度为:%s'\%(root.winfo_x(),root.winfo_y(),root.winfo_width(),root.winfo_height())label1.configure(text=txt)root.after(1,go)root=Tk()root.geometry("300x200+100+50")label1=Label(root)label1....