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

TGINSIGHT SIMILAR POSTS

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

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

Установить свойства виджета в PySide можно не только через соответствующие методы и конструктор класса. Можно их изменять с помощью метода setProperty по имени. btn = QPushButton("Click Me") btn.setProperty("flat", True) Это аналогично вызову btn.setFlat(True) Если указать несуществующее свойство, то оно просто создается btn.setProperty("btnType", "super") Получить его значение можно методом .property(name) btn_type = btn.property("btnType") Когда это может быть полезно? ▫️Можно просто хранить какие то данные в виджете и потом их доставать обратно widget = QWidget() widget.setProperty('my_data', 123) print(widget.property('my_data')) ▫️ Назначая эти свойства разным виджетам можно потом отличить виджеты во время итераци по ним. Например, найти все кнопки со свойством my_data="superbtn". Но ведь вместо кастомного свойства можно использовать objectName, будет тот же результат. Да, но y ObjectName есть ограничение - только строки. ▫️ Если нам потребуется не просто поиск а, например, сортировка по числу, то свойства позволяют нам это сделать. Поддерживается любой тип данных widget.setProperty('my_data', {'Key': 'value'}) widget.setProperty('order', 1) all_widgets.sort(key=w: w.property('order')) Но ведь Python позволяет всё вышеперечисленное сделать простым созданием атрибута у объекта widget.order = 1 widget.my_data = 123 Да, но я думаю что не надо объяснять почему не стоит так делать. К тому же, если у виджета нет свойства то метод .property(name) вернет None, а отсутствующий атрибут выбросит исключение. ▫️ Действительно полезное применение кастомным свойствам - контроль стилей. Здесь атрибутами не обойтись, нужны именно свойства. Дело в том, что в селекторах стилей можно указывать конкретные свойства виджетов на которые следует назначать стиль. Просто запустите этот код from PySide2.QtWidgets import * if __name__ == "__main__": app = QApplication([]) widget = QWidget(minimumWidth=300) layout = QVBoxLayout(widget) btn1 = QPushButton("Action 1") btn2 = QPushButton("Action 2") btn3 = QPushButton("Action 3", flat=True) layout.addWidget(btn1) layout.addWidget(btn2) layout.addWidget(btn3) # добавим кастомное свойство одной кнопке btn1.setProperty("btnType", "super") # добавляем стили widget.setStyleSheet( """ QPushButton[btnType="super"] { background-color: yellow; color: red; } QPushButton[flat="true"] { color: yellow; } """ ) widget.show() app.exec_() С помощью селектора мы избирательно назначили стили на конкретные кнопки. Как получить список всех кастомный свойств? Функция получения списка кастомных свойств отличается от получения дефолтных. def print_widget_dyn_properties(widget): for prop_name in widget.dynamicPropertyNames(): property_name = prop_name.data().decode() property_value = widget.property(property_name) print(f"{property_name}: {property_value}") #tricks#qt

Hashtags

Резултати

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

Пребарај: #botany

当前筛选 #botany清除筛选
Interesting Planet 🌍

@interesting_planet_facts · Post #655 · 30.08.2025 г., 03:22

🌎 In the rainforests of Borneo, the rare "shy leaf" or Mimosa pudica folds its leaves instantly when touched! This unique plant movement helps deter hungry herbivores and even protect against harsh weather—a botanical marvel using touch as a survival tool. ✨ #botany⚡#rainforest⚡#adaptation 👉subscribe Interesting Planet ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1212 · 11.01.2026 г., 12:11

🌎 Deep in Madagascar’s rainforests grows the rare “suicide palm” (Tahina spectabilis). This palm lives for decades, then flowers only once, producing a massive cluster with millions of small blooms, before dying. Fewer than 100 adult plants have been recorded in the wild. ✨ #botany⚡#biodiversity⚡#rainforest 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1062 · 22.11.2025 г., 18:11

🌎 The Australian native Anigozanthos, known as kangaroo paw, features velvety, tubular flowers shaped like a kangaroo's foot. Its unique structure attracts birds rather than insects for pollination. Some species display brilliant red, yellow, or green hues, and are found nowhere else in the wild. ✨ #botany⚡#biodiversity⚡#Australia 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #575 · 17.08.2025 г., 03:22

🌎 The quiver tree, native to southern Africa, stores water in its trunk and branches, allowing it to thrive in scorching deserts and bloom spectacularly after rare rains. ✨ #botany⚡#adaptation⚡#Africa 👉subscribe Interesting Planet

Interesting Planet 🌍

@interesting_planet_facts · Post #1272 · 04.02.2026 г., 12:11

🌎 The corpse flower (Amorphophallus titanum) from Indonesia produces one of the world’s largest and smelliest blooms, reaching over 3 meters tall. The flower emits a strong odor similar to rotting meat, which attracts carrion beetles and flies for pollination. ✨ #plants⚡#botany⚡#biodiversity 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #1179 · 31.12.2025 г., 18:11

🌎 The world’s smallest flowering plant, Wolffia globosa, floats on freshwater ponds and is less than 1 millimeter long. A single gram can contain over 150,000 individual plants. ✨ #plants⚡#biodiversity⚡#botany 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #912 · 15.10.2025 г., 15:11

🌎 Hidden deep in Western Australia, the rare Kingia australis plant produces tall, grass-like stems crowned with spiky flower heads. Its slow-growing trunk can take up to 150 years to reach just 5 meters, making it one of the region’s botanical oddities. ✨ #plants⚡#botany⚡#biodiversity 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #782 · 19.09.2025 г., 18:22

🌎 The Hydnora africana is a rare, parasitic plant native to southern Africa. It grows underground, emerging only to bloom with a fleshy, foul-smelling flower that attracts beetles for pollination. Its flowers can take up to a year to develop under the soil. ✨ #plants⚡#biodiversity⚡#botany 👉subscribe Interesting Planet ​

Interesting Planet 🌍

@interesting_planet_facts · Post #717 · 09.09.2025 г., 16:22

🌎 The Rafflesia arnoldii holds the record for the world’s largest single flower, measuring up to 1 meter across. This rare Southeast Asian plant emits a strong odor like rotting meat to attract pollinating flies, and it lacks leaves, stems, or roots of its own, living entirely as a parasite on vines. ✨ #plants⚡#botany⚡#biodiversity 👉subscribe Interesting Planet ​

Interesting Planet 🌍

@interesting_planet_facts · Post #376 · 21.07.2025 г., 16:22

🌎 In the Himalayan foothills, the Kalpavriksha, or “tree of heaven,” is a fig tree revered for living over 2,500 years. Its resilient roots stabilize soil and support hundreds of animal species, making it both a cultural icon and a pillar of its ecosystem. ✨ #botany⚡#longevity⚡#wildlife 👉subscribe Interesting Planet

Interesting Planet 🌍

@interesting_planet_facts · Post #1237 · 19.01.2026 г., 18:11

🌎 The Welwitschia mirabilis plant of Namibia is one of the world’s oldest living plants, with some individuals estimated at over 1,500 years old. Its two long, ribbon-like leaves continually grow from the base and can reach more than 4 meters in length. ✨ #botany⚡#africa⚡#desert 👉subscribe Interesting Planet 👉more Channels ​

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