Найти - Пользователи
Полная версия: Возможно ли сделать полупрозрачную форму в Tkinter?
Начало » GUI » Возможно ли сделать полупрозрачную форму в Tkinter?
1
Volobuev_Ilya
Работаю в Tkinter хочу сделать полупрозрачную форму.
arancare
wm_attributes(“-alpha”, 0.5)
где 0.5 уровень прозрачности от 0-1
import Tkinter
root = Tkinter.Tk()
root.wm_attributes("-alpha", 0.5)
root.mainloop()
Volobuev_Ilya
Спасибо! Вы очень помогли!
4kpt_IV
arancare
alpha (Windows, Mac) Controls window transparency. 0.0 means fully transparent, 1.0 means fully opaque. This isn’t supported on all systems; where not supported, Tkinter always uses 1.0. Note that in this release, this attribute must be given as “-alpha”.
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