Skip to content

yjg30737/pyqt-polygon-window

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

pyqt-polygon-window

PyQt polygon window

Requirements

PyQt5 >= 5.8

Setup

python -m pip install pyqt-polygon-window

Included packages

pyqt-resource-helper

Feature

  • setBorderWidth(width: int)
  • setCornerLength(corner_length: int)

Example

Code Sample

from PyQt5.QtWidgets import QApplication
from pyqt_polygon_window import PolygonWindow


if __name__ == "__main__":
    import sys

    app = QApplication(sys.argv)
    pw = PolygonWindow()
    pw.show()
    app.exec_()

Result

image