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

Резултати

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

Пребарај: #keyevents

当前筛选 #keyevents清除筛选

🎙Russia's Permanent Representative to the UN Vassily Nebenzia’s answers to media questions on the occasion of assuming UNSC Presidency by Russia (October 1, 2025) Major talking points: #KeyEvents • The Council will travel to Addis Ababa in October. Russia is honored to be leading the UNSC together with our co-leads in Somalia. A new department – on Partnerships with Africa – has been recently established in the Russian Foreign Ministry. Therefore, the visit to Addis will be the highlight of our Presidency. • October 23 – open debate on the Middle East: The unfolding catastrophe in Gaza will be in the focus of the Council’s attention. We expect Deputy Special Coordinator Ramiz Alakbarov to brief the Council. • October 24 – the UN Day (80th Anniversary of the UN Charter): an open debate titled UN: Looking into the Future. Aim: strict implementation of the principles of the UN Charter, restoring confidence in the Organization and long-term vision for its future. We expect the Secretary-General to brief the Council. • October 6 – Women, Peace and Security: it is the 25th anniversary of the UNSC seminal Resolution 1325. This event hold special importance to us, as the Soviet Union pioneered the women’s agenda more than a hundred years ago promoting equal rights. #JCPOA • Our Western colleagues who initiated the so-called “snapback”, the legitimacy of which we do not recognize, forfeited a diplomatic solution by initiating an illegal procedure while being serial violators of Resolution 2231. Russia and China offered to extend Resolution 2231 to give diplomacy a chance, which they basically killed. We do not recognize this “snapback” as coming into force. We are not, frankly, happy that the Secretary-General rushed to implement the resolution, which has obvious legal flaws. • We are looking forward to direct or indirect negotiations with the US that can bring results. Such dialogue is not happening now, and this situation is fraught with major escalation around Iran, opening the door to attempts to end its nuclear program – yet another destabilizing factor in an already fragile Middle East. #RussiaUN • We emphasize that the UN is indispensable, that its Charter must be applied in its entirety, and that attempts to bypass or weaken the Organization with "exclusive clubs" undermine global peace and security. Russia advocates a more representative, multipolar UN that reflects the voices of the Global South. • The UN is a reflection of the geopolitical situation that is in the world. Should we blame the Organization for it? For me, the UN is a sum of its Member States. If they cannot agree on anything, it is unfair to blame the UN for it. Margaret Thatcher said once that if you want to blame the UN, go and look in the mirror. Read in full