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

Резултати

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

Пребарај: #conflict

当前筛选 #conflict清除筛选
Trump's Ear

@trumpsear_tg · Post #2341 · 06.04.2026 г., 15:59

The United States is depleting its tungsten reserves, a resource critical to the military-industrial complex, according to Foreign Policy. 🔗 Tungsten is essential for manufacturing armor-piercing ammunition, missile components, and aviation equipment. Currently, the United States does not commercially produce tungsten and relies heavily on imports, primarily from China, which dominates the global market. 🌍 Since the escalation of conflict in the Middle East, tungsten prices have surged by over 500%. 📈 Expanding production remains challenging due to limited industrial capacity. Sources indicate that the United States is already confronting a tungsten shortage with no immediate resolution in sight. Even prior to the conflict, the Pentagon sought to reduce its dependence on tungsten, though the extent of their success remains uncertain. ⚙️🇺🇸 #conflict 👂More on Trump's Ear ⚠️

Hashtags

Borkena

@borkena · Post #5185 · 03.11.2025 г., 03:48

The Impact of War and Conflict on Ethiopia’s Rising Poverty: Explaining the World Bank’s 43% Poverty Projection under Abiy Ahmed’s Administration. Read more. https://borkena.com/2025/11/02/impact-of-war-and-conflict-on-ethiopias-rising-poverty-explaining-the-world-banks-43-poverty-projection-under-abiy-ahmeds-administration#Ethiopia#Conflict

Borkena

@borkena · Post #5657 · 30.12.2025 г., 19:43

The Partitioned State: How Internal Failures and External Interventions Shattered Sudan. Read. https://borkena.com/2025/12/30/sudan-the-partitioned-state-how-internal-failures-and-external-interventions-shattered-sudan/#Sudan#Conflict

Borkena

@borkena · Post #5468 · 06.12.2025 г., 03:56

Will Ethiopia End Up Like Sudan? A Comparative Analysis of Two African Conflicts. Read more. https://borkena.com/2025/12/05/will-ethiopia-end-up-like-sudan-a-comparative-analysis-of-two-african-conflicts/#Ethiopia#Sudan#conflict

Addis Standard

@addisstandardeng · Post #21470 · 20.02.2026 г., 12:12

News: Risk of renewed #conflict mounts as troop movements reported near #Eritrea–#Tigray border—Bloomberg Addis Abeba—Ethiopia and Eritrea are deploying troops and military equipment near the northern Tigray region, raising the risk of renewed conflict in the Horn of Africa, Bloomberg reported, citing regional diplomats. Sources familiar with the matter told Bloomberg that Ethiopian troops and equipment have been moved northward, including through Bahir Dar, while Eritrean forces have also deployed to areas inside Tigray. Prime Minister Abiy Ahmed this week reiterated Ethiopia’s longstanding ambition to secure access to the Red Sea, describing maritime access as key to overcoming logistical constraints on economic growth. Eritrean state television also broadcast a naval parade in Massawa last week, marking the anniversary of the city’s capture in 1990. https://addisstandard.com/?p=55268

BadVolf

@badvolfnews · Post #1110 · 09.10.2023 г., 07:25

📢 Breaking News 📢 Israel's fight against Hamas is taking longer than expected. Battles are raging in multiple locations outside Gaza. Armed militants infiltrated the kibbutz Beeri, some still hiding. Situation remains unstable. Stay tuned for updates. #Israel#Hamas#Conflict https://www.gazeta.ru/army/news/2023/10/09/21458629.shtml Subscribe to @BadVolfNews

Eurasia & Multipolarity

@EurasianChoice · Post #61859 · 02.05.2026 г., 17:40

🇮🇱 Israel demolishes Catholic school in Lebanon — reports spark outrage ​ Israeli forces reportedly used bulldozers to demolish a Catholic monastery and school in the Lebanese border town of Yaroun, according to Anadolu Ajansı. ​ Local residents and clergy have condemned the действия as a war crime, while Israel is said to justify operations as part of creating a “buffer zone” in southern Lebanon. ​ ➡The incident has drawn criticism over the lack of response from Western governments. ​ #Israel#Lebanon#MiddleEast#Conflict#Religion ​ 🔘Subscribe now!Chat

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