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

Резултати

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

Пребарај: #healthsecurity

当前筛选 #healthsecurity清除筛选

Last Friday, the National One Health Technical Committee (NOHTC) brought together key stakeholders across human, animal, and environmental health to: ✅ Review progress on previous action points ✅ Share updates on ongoing programmes and current outbreaks ✅ Align strategies to strengthen Nigeria’s health security through coordinated, multisectoral action Together, we’re advancing a resilient, data-driven OneHealth system for prevention, preparedness, and response. #HealthSecurity#NCDCNigeria#PublicHealth#OneHealth

🚨 Public Health Advisory: Ebola Virus Disease (EVD) The Nigeria Centre for Disease Control and Prevention (NCDC) has released a public health Advisory following the announcement of an Ebola Outbreak in DR Congo. Though no case has been reported in Nigeria, NCDC is closely monitoring the situation. Key Preventive Measures: ▪️Wash hands frequently with soap & running water ▪️Avoid contact with sick individuals showing symptoms like fever, vomiting, diarrhoea & bleeding ▪️Avoid bushmeat and ensure all animal products are well-cooked ▪️Healthcare workers: maintain high IPC standards & use PPE 🧑‍⚕️ Read the full advisory 🔗https://ncdc.gov.ng/themes/common/docs/protocols/369_1757166366.pdf If you or anyone you know (with recent travel to affected areas) experiences symptoms, call 📞 6232 or your State Ministry of Health hotline immediately. Together, we can prevent the spread and protect Nigeria. 🇳🇬 #EbolaAdvisory#HealthSecurity#NCDCNigeria

🚨 PUBLIC HEALTH ADVISORY 🚨 The Nigeria Centre for Disease Control and Prevention (NCDC) has announced that Nigeria currently has no confirmed case of Ebola Virus Disease (EVD), following the ongoing outbreak in the Democratic Republic of the Congo and a reported imported case in Uganda. 🦠 Ebola Virus Disease is a severe viral illness transmitted through direct contact with infected bodily fluids or contaminated materials. Common symptoms include: ✅Fever ✅Headache ✅Weakness ✅Muscle pain ✅Vomiting ✅Diarrhoea ✅severe cases, unexplained bleeding. The NCDC is actively strengthening surveillance, laboratory readiness, infection prevention, and public awareness efforts across the country. Nigerians are advised to remain calm, maintain good hand hygiene, avoid misinformation, and report unusual illnesses promptly. Stay informed through official public health channels only. Together, we can strengthen preparedness and protect public health. #Ebola#PublicHealth#NCDCNigeria#HealthSecurity

#Ebola is caused by the Ebolavirus — a group of viruses with several species, including Zaire, Sudan, Bundibugyo, Taï Forest, and Reston ebolavirus (which affects animals but not humans). Knowing the cause helps us strengthen prevention and response efforts. 💪🏾 Stay Safe, Stay Protected! #EbolaAwareness#HealthSecurity#NCDCNigeria

Our first strategy 'Idea to Reality' incorporated a new vision and mission that cascaded into 5 Strategic Goals, 22 Objectives and 89 Activities. TOMORROW, November 21, marks another major milestone for #healthsecurity champions as we launch the: 📣Nigeria Centre for Disease Control and Prevention Strategy (2023-2027): #VisiontoAction📣 Don't miss out. Join us online via bit.ly/NCDCStrategyLaunch #IAmHealthSecurity