Прозрачный фон в окне tkinter
У меня есть окно tkinter с текстом и с overrideredirect. Мне надо что-бы было видно текст, но не было фона(был прозрачным) и текст был в верхнем углу(любом)
Ответы (1 шт):
Автор решения: Sergey
→ Ссылка
Может быть стоит попробовать так:
imageName blank Blank the image; that is, set the entire image to have no data, so it will be displayed as transparent, and the background of whatever window it is displayed in will show through.
https://www.tcl.tk/man/tcl8.7/TkCmd/photo.htm
Применительно к Python это, наверное, должно выглядеть как-то так:
окно = Окно(.., bg = 'blank', ...)