Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Python 2.7.3 のこのコードは、Windows XP では機能しますが、Ubuntu Unity では機能しません。ubuntuウィンドウの透明度をどのように作るか。
# -*- coding: UTF-8 -*- from Tkinter import Tk window = Tk() window.wm_attributes('-alpha',0.8) window.geometry('500x500+200+211') window.mainloop()