TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #380 · 21 окт.

Регулярно приходится писать и ревьюить код, где используется PySide2-6. Заметил, что в подавляющем большинстве случаев настройка создаваемых базовых виджетов происходит через методы. Думаю, всем знаком такой способ. Простой пример с кнопкой: button = QPushButton("Click Me") button.setMinimumWidth(300) button.setFlat(True) button.setStyleSheet("font-size: 20pt") button.setToolTip("Super Button") button.clicked.connect(lambda: print("Button clicked")) Но есть и альтернативный способ - настройка через свойства. Это просто ключевые аргументы конструктора класса. Хоть они и не указаны в документации как аргументы, но они есть) Этот код делает тоже самое но с помощью Property button = QPushButton( "Click Me", minimumWidth=300, flat=True, styleSheet="font-size: 20pt", toolTip="Super Button", clicked=lambda: print("Button clicked"), ) Где это может быть полезно ▫️ Это выглядит более аккуратно и коротко, уже повод использовать ▫️ Может использоваться в заполнении лейаута, когда нам не нужно никакое другое взаимодействие с виджетом и поэтому сохранять его в переменную не требуется. Например, лейбл или кнопка. widget = QWidget(minimumWidth=400) layout = QHBoxLayout(widget) layout.addWidget(QLabel("Button >", alignment=Qt.AlignRight)) layout.addWidget(QPushButton("Click Me", clicked=lambda: print("Button clicked"))) widget.show() Либо так widget = QWidget(minimumWidth=400) layout = QHBoxLayout(widget) for wd in ( QLabel("Button >", alignment=Qt.AlignRight), QPushButton("Click Me", clicked=lambda: ...) ): layout.addWidget(wd) widget.show() ▫️ Можно хранить настройки в каком-то конфиге или генерировать на лету, после чего передавать как kwargs. kwargs = {"text": "Hello " * 30, "wordWrap": True} my_label = QLabel(**kwargs) Как получить полный список доступных свойств? Эта функция распечатает в терминал все свойства виджета и их текущие значения def print_widget_properties(widget): meta_object = widget.metaObject() for i in range(meta_object.propertyCount()): property_ = meta_object.property(i) property_name = property_.name() property_value = property_.read(widget) print(f"{property_name}: {property_value}") #tricks#qt

Hashtags

Резултати

Пронајдени 22 слични објави

Пребарај: #paraguay

当前筛选 #paraguay清除筛选
POPULAR FRONT

@popularxfront · Post #4946 · 09.02.2026 г., 20:45

🇵🇾#Paraguay: Recently released footage shows a Paraguayan Air Force (FAP) A-29 Super Tucano aircraft pursuing a suspected drug-trafficking plane that illegally entered national airspace in the country’s northern region, firing warning shots during the interception. (📹 via @ZuluCanal on TG & @ZDefensa on X)

Hashtags

Canal Huelga🚩

@huelga · Post #20036 · 24.10.2023 г., 08:02

#Paraguay#sanidad Huelga de trabajadores del área de limpieza de la Unidad Sanitaria del Instituto de Previsión Social en San Juan Bautista, Misiones. https://www.abc.com.py/nacionales/2023/10/23/funcionarios-de-limpieza-de-ips-san-juan-realizan-huelga-tras-no-cobrar-hace-tres-meses/

ASIANOMICS

@asianomics · Post #5204 · 15.07.2025 г., 08:39

🇹🇼🇵🇾🇺🇸 Taiwan president to visit Paraguay next month, paving way for possible US transits Paraguay is preparing to receive Taiwan's President Lai Ching-te next month, President Santiago Pena said on Monday, meaning Lai will also most likely make sensitive transit stops in the United States bound to infuriate Beijing. Paraguay is one of only 12 countries to maintain formal diplomatic ties with Taiwan, and the only one in South America. Visits by Taiwanese presidents to Central and South America always involve what are officially only stopovers in the United States given the distance from Taiwan, but are often the most important parts of the trip given Washington is the island's top international backer and arms supplier. #Taiwan#Paraguay#USA @asianomics

El Gourmet Urbano

@gourmeturbano · Post #19828 · 15.11.2024 г., 08:24

#LICORES#PARAGUAY🥃 | La mandioca va a la copa: Emperatriz, un destilado único que fusiona tradición y modernidad https://ift.tt/K1RXLPd November 15, 2024 at 04:00AM

Communia

@communia · Post #37101 · 29.09.2023 г., 13:52

#Paraguay mete prisa a la #UE para aprobar el acuerdo con #Mercosur: si no está aprobado en diciembre, cortaría el proceso https://www.dw.com/es/p%C3%B3ker-por-el-acuerdo-entre-mercosur-y-la-uni%C3%B3n-europea/a-66942484

🏆 Info 288 - DEPORTES

@info288_deportes · Post #35258 · 11.09.2024 г., 06:46

⚽️🌎Clasificación Mundial 2026 Colombia 2-1 Argentina#Mundial2026#Paraguay#Brasil Celebra Colombia y celebra el Rayo Vallecano la resurrección de James Rodríguez, colosal en la Copa América y también en el primer partido grande que le aguardó esta temporada, ante la campeona del mundo y en Barranquilla, ante los ojos de Sudamérica y también los de España, que le vuelven a hacer un hueco cuando ya parecía parte del pasado. Una asistencia y un gol, de penalti, le bastaron para liquidar a Argentina y aumentar su aura. https://as.com/futbol/internacional/james-tumba-a-argentina-n/ 🏆@Info288_deportes

🏆 Info 288 - DEPORTES

@info288_deportes · Post #35257 · 11.09.2024 г., 06:45

⚽️🌎Clasificación Mundial 2026 Paraguay 1-0 Brasil#Mundial2026#Paraguay#Brasil La derrota (1-0) de Brasil ante Paraguay más de 15 años después en un partido de Eliminatorias Sudamericanas ejemplifica el delicado momento que atraviesa la 'Seleçao'. Incapaces de reponerse al golazo de Diego Gómez en la primera mitad, los de Dorival se hundiendo en Asunción... y vuelven a complicarse la vida en tras coger aire ante Ecuador. Sólo marchan un punto por encima de la 'repesca' que, precisamente, marcan los de Alfaro. https://www.marca.com/futbol/futbol-internacional/cronica/2024/09/11/66e0d5eee2704eb4088b45bc.html 🏆@Info288_deportes

12
ПретходнаСтраница 1 од 2Следна