Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 723 Bytes

button.md

File metadata and controls

29 lines (20 loc) · 723 Bytes

KitButton

Кнопка с текстом и/или иконкой

Наследует QPushButton

from PyQtUIkit.widgets import KitButton

button = KitButton("KitButton")

img_3.png

from PyQtUIkit.widgets import KitButton

button = KitButton("Python", icon='python')
button.border = 0

img_4.png

Параметры:

  • main_palette (KitPalette, по умолчанию 'Main')
  • icon (str (из встроенной коллекции иконок) или KitIcon (из файла))
  • border (int, по умолчанию 1)
  • radius (int, по умолчанию 4)

◀ На главную страницу