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

Резултати

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

Пребарај: #op

当前筛选 #op清除筛选
Coin Sonar

@CoinSonar · Post #244058 · 18.04.2026 г., 08:02

#OP | Volume spike (USDT PAIR) 64 times the average volume 126.26K USDT traded in 1 min └Selling vol: 113.20K USDT 🔴 Boost score: 1/10 24h Vol: 2.82M USDT (Binance) Price: 0.1336 (-2.5% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243884 · 18.04.2026 г., 00:02

#OP | Volume spike (USDT PAIR) 65 times the average volume 127.49K USDT traded in 1 min └Buying vol: 111.92K USDT 🟢 Boost score: 8/10 24h Vol: 2.82M USDT (Binance) Price: 0.1349 (-2.5% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243763 · 17.04.2026 г., 16:02

#OP | Volume spike (USDT PAIR) 71 times the average volume 139.46K USDT traded in 1 min └Selling vol: 115.82K USDT 🔴 Boost score: 1/10 24h Vol: 2.82M USDT (Binance) Price: 0.1333 (-2.5% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243690 · 17.04.2026 г., 13:37

#OP | Volume spike (USDT PAIR) 9 times the average volume 286.83K USDT traded in 15 min └Selling vol: 170.17K USDT 🔴 Boost score: 1/10 24h Vol: 2.82M USDT (Binance) Price: 0.1343 (-2.5% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243286 · 16.04.2026 г., 19:15

#OP | Volume spike (USDT PAIR) 59 times the average volume 117.20K USDT traded in 1 min └Buying vol: 100.25K USDT 🟢 Boost score: 7/10 24h Vol: 2.82M USDT (Binance) Price: 0.1318 (-2.5% in 24h)

Hashtags

Pro Analysis

@proanalysistrader · Post #28111 · 03.11.2024 г., 05:16

#OP/USDT analysis : #OP is currently forming a continuation pattern within a downtrend. The price has broken previous lows, and it is anticipated that it will continue its bearish momentum. It is advisable to wait for a pullback to the identified zone for a short entry, as the previous swing low is expected to be tested. TF : 1D Entry : $1.493 Target : $1.076 SL : $1.773

Hashtags

Pro Analysis

@proanalysistrader · Post #27879 · 27.08.2024 г., 09:31

#OP/USDT analysis : #OP has broken out above the 200 EMA and the previous resistance zone with strong bullish momentum. It is now retesting the breakout zone. The price is expected to continue its bullish bias and test previous highs. Wait for a break of the $1.517 level to go long. TF : 2H Entry : $1.517 Target : $1.643 SL : $1.444

Hashtags

American Crypto©

@americancryptotrading · Post #27519 · 30.01.2026 г., 10:33

🇺🇸#OP/USDT is consolidating near the lowerborder of the descendingchannel formation on the 3D chart🔍 Bullish if we bounce off the one🐃 American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27466 · 11.12.2025 г., 09:18

🇺🇸#OP/USDT has found support at the lowerborder of the descendingchannel on the 3D chart🔍 Expecting a bounce soon🚀 American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27336 · 08.08.2025 г., 09:02

🇺🇸#OP/USDT is ready to break out of the descendingresistance on the daily timeframe💁‍♂️ Looking for a leg upward✈️ American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27236 · 02.05.2025 г., 10:01

🇺🇸#OP/USDT is printing the descendingresistance line on the daily chart🧐 Breakout will bring a huge rally🐃 American Crypto©

Hashtags

123•••89
ПретходнаСтраница 1 од 9Следна