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.setStyleSheet("background-color:black;")
pencere.show()
uygulama.exec_()
from PyQt4.QtGui import *
import sys
uygulama=QApplication(sys.argv)
pencere=QWidget()
pencere.setWindowTitle("python4hackers.com")
pencere.setMaximumWidth(200)
pencere.show()
uygulama.exec_()
2
3
4
5
6
7
8
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.setMaximumSize(400,300)
pencere.show()
uygulama.exec_()
from PyQt4.QtGui import *
import sys
uygulama=QApplication(sys.argv)
pencere=QWidget()
pencere.setWindowTitle("python4hackers.com")
pencere.setFixedWidth(900)
pencere.show()
uygulama.exec_()