Найти - Пользователи
Полная версия: Форматирование текствого виджета
Начало » GUI » Форматирование текствого виджета
1
kampella
Пытаюсь отформатировать текст
from Tkinter import Text, Tk, INSERT
root = Tk()
text = Text(root)
text.tag_configure("center", justify='center', underline=0)
text.insert(INSERT, value, hyperlink.add(callback), 'center')
Тег center не определяется и попадает в текстовый вывод.
Подскажите как правильно сделать?
Paranoia_Agent
Как-то непонятно описано
import Tkinter
root = Tkinter.Tk()
text = Tkinter.Text(root)
text.tag_configure('center', justify = 'center', underline = 0)
text.pack()
for x in range(10):
    text.insert('insert', str(x) * x + '\n', 'center')
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB