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

Резултати

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

Пребарај: #web2

当前筛选 #web2清除筛选
Nomis | Onchain Reputation Protocol

@nomis_protocol · Post #552 · 25.11.2024 г., 15:51

🎟Get superpower with your Scores within Hybrid Savings—tons of tailored offers for Score holders and much more! Hybrid Savings is a unique aggregator of exclusive deals that combines #WEB2 & #WEB3 in one convenient format of a Telegram Mini App. There you may find the best promotions, promo codes, and discounts! 🤔How can you access Hybrid Savings’ promo codes and other offers? 1) Visit Hybrid Savings via Partners or ScoreFront pages 2) Go to “Wallet” page 3) Click “Connect TON Wallet” 4) Enjoy exclusive deals! 💎 Now you can also enjoy all the ScoreFront benefits via Hybrid Savings right in the app—check the integration yourself using the button below!

Hashtags

Nomis | Onchain Reputation Protocol

@nomis_protocol · Post #513 · 31.10.2024 г., 12:02

🎟Yo dawg I herd u like benefits so we put a benefit in yo Score so u can be rewarded while u rewarded!Meet dozens of rewarding offers in Hybrid Savings offer on ScoreFront💎 Hybrid Savings is a unique aggregator of exclusive deals that combines #WEB2 & #WEB3 in one convenient format of a Telegram Mini App. There you may find the best promotions, promo codes, and discounts! 🤔How can you access Hybrid Savings’ promo codes and other offers? 1) Visit Hybrid Savings via Partners or ScoreFront pages 2) Go to “Wallet” page 3) Click “Connect TON Wallet” 4) Enjoy exclusive deals! Explore the offer details and leverage you Score by accessing best deals using the button below!

Hashtags

DWF Labs Broadcast

@Dwflabs · Post #97 · 14.12.2022 г., 09:30

While blockchain-based technologies have many qualities that set them apart from other computing paradigms, one of their primary value propositions is the generation of cryptographic truth. Amidst the market uncertainty, cryptographic truth is taking on greater prominence in setting the stage for a new competitive battleground for #Web2 and #Web3 applications centered around the type of trust-minimized guarantees offered to users. Now, it is up to users, developers, entrepreneurs, and forward-looking companies to begin building and adopting trust-minimized, quality protocols and products with real long-term viability. As we continue to empower development, expansion and #innovation in this space, we recognise the importance of building a world powered by #truth. This is the new standard. Full read here.

DWF Labs Broadcast

@DWFLabs · Post #201 · 09.02.2023 г., 00:01

[2 Feb-8 Feb] DWF Crypto Snapshot Our latest #crypto report by our Managing Partner Andrei Grachev is up. In this week's round up 💫 💠 Bitcoin #NFTs? It’s More Likely Than You Think 💠 Federal Rate Hikes Fuel #Bitcoin Price Sentiments 💠Renewed NFT Interest Drives #Trading And Lending On Popular #Marketplaces 💠History Comes To Life As Woodstock Takes To The #Metaverse 💠Western Financial Institutions Push #Crypto Prices With Spot Inflows 💠Japan Aims To Revitalize Its #Economy With Web3 #Innovation 💠Major #Web2 Companies Starts Hiring To Bolster #Web3 Capability Full readhere. Missed last week's snapshot? Read here. Follow us on Medium here. Stay up-to-date on the latest DWF Labs updates: Website| Twitter | Linkedin | Telegram

Crypto M - Crypto News

@CryptoM · Post #64885 · 10.04.2026 г., 06:54

🚀 Tria Integrates Aptos Network for Enhanced Global Transactions Tria, a non-custodial financial operating system, has announced the integration of its global trading engine with the Aptos network. According to ChainCatcher, this integration allows over 500,000 users across more than 150 countries to directly access and trade Aptos assets. Users can now perform cross-chain exchanges and asset interactions within a single application without the need for cross-chain bridges. The collaboration aims to leverage Aptos's sub-second confirmation and parallel execution technology to provide users with a seamless transaction experience. Additionally, it seeks to further connect traditional finance, Web2, and on-chain infrastructure. #Tria#AptosNetwork#GlobalTransactions#NonCustodial#FinancialOperatingSystem#CrossChainExchanges#AssetInteractions#Blockchain#Web2#OnChainInfrastructure#Aptos#Crypto#DecentralizedFinance#Fintech#APT