我正在开发一个项目,要求我在Tkinter Label小部件中为某些文本加下划线。我知道可以使用下划线方法,但我似乎只能根据参数强调小部件的1个字符。即。
p = Label(root, text=" Test Label", bg='blue', fg='white', underline=0)
change underline to 0, and it underlines the first character, 1 the second etc
我需要能够为小部件中的所有文字加下划线,我确信这是可能的,但是如何?
我在Windows 7上使用Python 2.6。
答案 0 :(得分:13)
要为标签小部件中的所有文本加下划线,您需要创建一个将下划线属性设置为True的新字体。这是一个例子:
import Tkinter as tk
import tkFont
class App:
def __init__(self):
self.root = tk.Tk()
self.count = 0
l = tk.Label(text="Hello, world")
l.pack()
# clone the font, set the underline attribute,
# and assign it to our widget
f = tkFont.Font(l, l.cget("font"))
f.configure(underline = True)
l.configure(font=f)
self.root.mainloop()
if __name__ == "__main__":
app=App()
答案 1 :(得分:5)
对于那些使用Python 3并且无法使下划线工作的人,这里是使其工作的示例代码。
from tkinter import font
# Create the text within a frame
pref = Label(checkFrame, text = "Select Preferences")
# Pack or use grid to place the frame
pref.grid(row = 0, sticky = W)
# font.Font instead of tkFont.Fon
f = font.Font(pref, pref.cget("font"))
f.configure(underline=True)
pref.configure(font=f)
答案 2 :(得分:2)
mylabel = Label(frame, text = "my label")
mylabel.configure(font="Verdana 15 underline")
答案 3 :(得分:2)
单人
mylabel = Label(frame, text = "my label", font="Verdana 15 underline")
答案 4 :(得分:0)
请尝试以下划线:
mylbl=Label(Win,text='my Label',font=('Arial',9,'bold','underline'))
mylbl.grid(column=0,row=1)
答案 5 :(得分:0)
要在所有字符下划线,您应该导入tkinter.font并以此来制作自己的字体样式。例子-
from tkinter import *
from tkinter.font import Font
rt=Tk()
myfont=Font(family="Times",size=20,weight="bold", underline=1)
Label(rt,text="it is my GUI".title(),font=myfont,fg="green").pack()
rt.mainloop()
答案 6 :(得分:0)
The positional operator did not find the match needed from the query
输入您自己的字体(我选择helvetica 8)