我有这段代码但是有一些行将文本小部件分隔到根。如何删除这些线条以使其无缝连接?
import Tkinter, tkFont
root=Tkinter.Tk()
root.geometry('+%d+%d' % (0,0)) #controls where the window is
root.geometry('%dx%d' % (400,400)) #controls window size
background_color = "#fff"
root.config(background=background_color)
customFont = tkFont.Font(family="Agency FB", size=200)
text = Tkinter.Text(root, font=customFont, background=background_color)
text.insert("end","42")
text.config(state='disabled')
text.pack()
text.place(x=10,y=10)
root.mainloop()
答案 0 :(得分:2)
您可以将borderwidth
与highlightthickness
或relief
选项一起使用。任何一个都应该工作。
text = Tkinter.Text(root, ... , relief="flat")
text = Tkinter.Text(root, ... , borderwidth=0, highlightthickness=0) #thanks to Bryan Oakley
如果您想查看小部件的其他选项,请查看effbot