Arşivler: Gistpens

A collection of code snippets.

from PyQt4.QtGui import *
import sys
uygulama=QApplication(sys.argv)
pencere=QWidget()
pencere.setWindowTitle("python4hackers.com")
pencere.setMaximumHeight(200)
pencere.show()
uygulama.exec_()
from PyQt4.QtGui import *
import sys
uygulama=QApplication(sys.argv)
pencere=QWidget()
pencere.setWindowTitle("python4hackers.com")
pencere.setWindowOpacity(0.6)
pencere.show()
uygulama.exec_()
from PyQt4.QtGui import *
import sys
uygulama=QApplication(sys.argv)
pencere=QWidget()
pencere.setWindowTitle("python4hackers.com")
pencere.showMaximized()
uygulama.exec_()
from PyQt4.QtGui import *
import sys
uygulama=QApplication(sys.argv)
pencere=QWidget()
pencere.setWindowTitle("python4hackers.com")
pencere.showFullScreen()
uygulama.exec_()
pencere.setStyleSheet("background-color:#a2988e;")