Volobuev_Ilya
Март 3, 2016 17:34:32
Работаю в Tkinter хочу сделать полупрозрачную форму.
arancare
Март 4, 2016 08:00:44
wm_attributes(“-alpha”, 0.5)
где 0.5 уровень прозрачности от 0-1
import Tkinter
root = Tkinter.Tk()
root.wm_attributes("-alpha", 0.5)
root.mainloop()
Volobuev_Ilya
Март 4, 2016 11:10:13
Спасибо! Вы очень помогли!
4kpt_IV
Март 4, 2016 13:35:45
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”.