使用PyQt4 designer時沒法啓動uic解決方案

1.本身調用命令行python

  pyuic4 -o codeFile.py -x yourUIfile.uiui

2.寫一個批處理,每次雙擊就好了,跟你的源文件放在同一文件夾下spa

  

import  os
for  root, dirs, files  in  os.walk( '.' ):
     for  file  in  files:
         if  file .endswith( '.ui' ):
             os.system( 'pyuic4 -o %s.py -x %s'  %  ( file .rsplit( '.' 1 )[ 0 ],  file ))
         elif  file .endswith( '.qrc' ):
          os.system( 'pyrcc4 -o %s_rc.py %s'  %  ( file .rsplit( '.' 1 )[ 0 ],  file ))
相關文章
相關標籤/搜索