我的qt程序設置了自啟動,是在.desktop設置的,等桌面啟動後直接啟動我的程序,可是我設置了透明效果後,我的程序背景圖片都沒有了,而不用自啟動時是好的,這是有什麼沖突麼?
setAutoFillBackground(false);
setWindowFlags(Qt::FramelessWindowHint);
setAttribute(Qt::WA_TranslucentBackground, true);
透明設置是這樣的。
剛開機設置是 setAutoFillBackground(true);
setWindowFlags(Qt::FramelessWindowHint);
setAttribute(Qt::WA_TranslucentBackground, true);
這樣,讓它顯示圖片的,可是圖片卻不見了
應該是你開機自啟的時候系統找不到你的圖片路徑。開機自啟程序運行路徑在c:/windows/system32下。