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

Резултати

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

Пребарај: #right

当前筛选 #right清除筛选
America 🇺🇸 News & Politics

@America · Post #10267 · 27.12.2025 г., 02:33

😄Right ➖➖➖➖➖➖ 🔘Right as an adjective can mean something is correct. 🔜Well done! You got the answer to the question right. 🔜I didn't know she was right about his age. He looks so much younger. 🔘Right can be an adjective to mean something is suitable for a person, objective or situation. 🔜I think Sandra is the right person to run the community project. 🔜The moment I met my wife, I knew we were right for each other. 🔘Right is an adjective and means the opposite of left. 🔜The right side of the picture is brighter. 🔜Take a right turn at the end of the lane to reach my house. 🔘We can also use this meaning of right as a noun, often with the preposition 'on' – 'on the right' 🔜To go to the bank, take the third road on the right. 🔜In the UK, we drive on the left, while in many countries people drive on the right. 🔘Right as an adjective can be used to talk about being healthy or to say that something is working correctly. 🔜I didn't feel right after those fish and chips. I was sick. 🔜This computer isn't right. I think it has a virus. #Right👨‍🏫@America ➖➖➖➖➖➖➖➖➖➖➖➖ 🆕 Crypto News @Money 😁 Crypto Game @Egame 🇺🇸 US News @America 🇯🇵 Japan News @Japan 🇦🇪 UAE News @Dubai ▶️ Popular Movies @Videos 😜 Best Funny Video @Funnys

Hashtags

😄Right ➖➖➖➖➖➖ 🔘Right as an adjective can mean something is correct. 🔜Well done! You got the answer to the question right. 🔜I didn't know she was right about his age. He looks so much younger. 🔘Right can be an adjective to mean something is suitable for a person, objective or situation. 🔜I think Sandra is the right person to run the community project. 🔜The moment I met my wife, I knew we were right for each other. 🔘Right is an adjective and means the opposite of left. 🔜The right side of the picture is brighter. 🔜Take a right turn at the end of the lane to reach my house. 🔘We can also use this meaning of right as a noun, often with the preposition 'on' – 'on the right' 🔜To go to the bank, take the third road on the right. 🔜In the UK, we drive on the left, while in many countries people drive on the right. 🔘Right as an adjective can be used to talk about being healthy or to say that something is working correctly. 🔜I didn't feel right after those fish and chips. I was sick. 🔜This computer isn't right. I think it has a virus. #Right👨‍🏫@America ➖➖➖➖➖➖➖➖➖➖➖➖ 🆕 Crypto News @Money 😁 Crypto Game @Egame 🇺🇸 US News @America 🇯🇵 Japan News @Japan 🇦🇪 UAE News @Dubai ▶️ Popular Movies @Videos 😜 Best Funny Video @Funnys

Hashtags

搜书神器 读书动态

@BookLogSFW · Post #91233 · 19.05.2026 г., 00:25

书名:青花鱼】关于我热衷给发小戴绿帽子这回事 文件:简体中文 · TXT · 337KB · 9.1万字 · 1R 统计:344热度 | 30下载 | 1点赞 | 0收藏 评级:0分 (0人) 💬 质量:9.6分 (0人) 标签:#手机#来自#发小#太太#许赟#糖糖#喜欢#圆圆#仙子#加油#本帖#沈棠#撒花#完结#可爱#手指#pcb#margin#right#不要 #预览#SFW#收藏书籍 📜我喜欢的书籍[8022本]