TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #380 · 21 окт.

Регулярно приходится писать и ревьюить код, где используется PySide2-6. Заметил, что в подавляющем большинстве случаев настройка создаваемых базовых виджетов происходит через методы. Думаю, всем знаком такой способ. Простой пример с кнопкой: button = QPushButton("Click Me") button.setMinimumWidth(300) button.setFlat(True) button.setStyleSheet("font-size: 20pt") button.setToolTip("Super Button") button.clicked.connect(lambda: print("Button clicked")) Но есть и альтернативный способ - настройка через свойства. Это просто ключевые аргументы конструктора класса. Хоть они и не указаны в документации как аргументы, но они есть) Этот код делает тоже самое но с помощью Property button = QPushButton( "Click Me", minimumWidth=300, flat=True, styleSheet="font-size: 20pt", toolTip="Super Button", clicked=lambda: print("Button clicked"), ) Где это может быть полезно ▫️ Это выглядит более аккуратно и коротко, уже повод использовать ▫️ Может использоваться в заполнении лейаута, когда нам не нужно никакое другое взаимодействие с виджетом и поэтому сохранять его в переменную не требуется. Например, лейбл или кнопка. widget = QWidget(minimumWidth=400) layout = QHBoxLayout(widget) layout.addWidget(QLabel("Button >", alignment=Qt.AlignRight)) layout.addWidget(QPushButton("Click Me", clicked=lambda: print("Button clicked"))) widget.show() Либо так widget = QWidget(minimumWidth=400) layout = QHBoxLayout(widget) for wd in ( QLabel("Button >", alignment=Qt.AlignRight), QPushButton("Click Me", clicked=lambda: ...) ): layout.addWidget(wd) widget.show() ▫️ Можно хранить настройки в каком-то конфиге или генерировать на лету, после чего передавать как kwargs. kwargs = {"text": "Hello " * 30, "wordWrap": True} my_label = QLabel(**kwargs) Как получить полный список доступных свойств? Эта функция распечатает в терминал все свойства виджета и их текущие значения def print_widget_properties(widget): meta_object = widget.metaObject() for i in range(meta_object.propertyCount()): property_ = meta_object.property(i) property_name = property_.name() property_value = property_.read(widget) print(f"{property_name}: {property_value}") #tricks#qt

Hashtags

Резултати

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

Пребарај: #cbe

当前筛选 #cbe清除筛选
Addis Standard

@addisstandardeng · Post #21192 · 26.01.2026 г., 12:14

News: #CBE says digital platforms handled over nine trillion birr, accounting for 87% of half-year transactions The Commercial Bank of Ethiopia (CBE) says transactions conducted through its digital banking platforms surpassed nine trillion birr in the first half of the 2025/26 fiscal year, accounting for nearly 88 percent of the bank’s total transfers and payments. The figures were disclosed during CBE’s half-year performance review conference, where Wegayehu Gebremariam, Vice President for Strategic Planning and Transformation, presented the bank’s six-month performance report. According to Wegayehu, digital channels facilitated more than nine trillion birr in transactions during the reporting period, representing 87.9 percent of total banking transactions. He said CBE accounted for 73 percent of the country’s total digital transactions and payments in the previous fiscal year, adding that current trends indicate the bank is likely to maintain its.... Read more: https://addisstandard.com/?p=54768

Hashtags

JIFAR CAREER

@JIFAR1 · Post #117 · 28.01.2025 г., 19:35

ጥንቃቄ #CBE አደገኛ መተግበሪያ በማኅበራዊ ሚዲያ እየተዘዋወረ መሆኑን ንግድ ባንክ አስታወቀ‼️ ከጫናችሁ ያለፈቃድ ገንዘብ ይቆረጥባችኃል! ደንበኞች በዋትስ አፕ እና በቴልግራም የሚሠራጭ Pharma+/CBE Vacancy መተግበሪያን እንዳይጭኑ የኢትዮጵያ ንግድ ባንክ አሳስቧል። ባንኩ ባስተላለፈው የማስጠንቀቂያ መልዕክት፤ ባደረገው ምርመራ መሠረት አደገኛ መተግበሪያ ማግኘቱን ገልጿል። ይህ Pharma+/CBE Vacancy የተሰኘ አሳሳች መተግበሪያ በማህበራዊ ሚዲያ ላይ በሰፊው እየተሰራጨ እንደሆነ በመጥቀስ፤ ይህ መተግበሪያ በቴሌግራም እና ዋትስአፕ ወደ ደንበኞቹ እየደረሰ መሆኑን ጠቁሟል። መተግበሪያው በስልክ ላይ ከተጫነ ያለ ፈቃድ ገንዘብ ማስተላለፍ እንደሚችልም አሳውቋል። ባንኩ ከዚህ አይነት አደጋ ለመጠበቅ ከቴሌግራም ወይም ዋትስአፕ መተግበሪያዎችን አታውርዱ ብሏል። ደንበኞች መሰል ተግባራት ሲገጥሟቸው በ951 ነጻ የስልክ መስመር ደውለው እንዲያሳውቁ አሳስቧል።

Hashtags

Addis Standard

@addisstandardeng · Post #21142 · 21.01.2026 г., 10:12

News: #CBE launches digital wallet for inward foreign currency transfers The Commercial Bank of #Ethiopia (CBE), in partnership with local company StarPay Financial Services, has launched a digital wallet application, “CBE Connect,” to facilitate the transfer of foreign currency into the country. Ephrem Mekuria, Executive Vice President for Corporate Services at the Commercial Bank of Ethiopia, attended the launch ceremony yesterday, alongside ambassadors and senior bank officials. Ephrem encouraged customers to use legal channels instead of informal foreign exchange markets during his speech at the event. He added that CBE Connect allows users to send money easily using international payment cards such as Visa and Mastercard, as well as through licensed foreign remittance agents. The bank noted that the digital wallet aims to support international customers, boost foreign currency inflows, and provide the Ethiopian diaspora with a simple, cost-free platform to send and receive remittances.

Addis Standard

@addisstandardeng · Post #21881 · 30.03.2026 г., 10:28

#Policy_Brief: Consolidate or Collapse: Mergers and acquisitions as strategic lifeline for #Ethiopian banks In this policy brief, Samson Hailu contends that Ethiopia’s banking sector is entering a critical phase, as consolidation —particularly through mergers and acquisitions— shifts from a private-sector discussion to a policy priority of the #NBE under Governor Eyob Tekalign. Although the sector has expanded to 31 banks, the #CBE continues to dominate, leaving smaller institutions vulnerable. Stress tests highlight significant capital and liquidity risks, reinforcing the author’s warning that “consolidation is not merely a strategic choice but a requirement for survival.” He recommends that smaller “third-generation” banks form partnerships with larger private banks and endorses a “guided voluntary” approach, designed not to mandate consolidation but to facilitate market-led combination. https://addisstandard.com/?p=56167

GOFERE

@goferesportswear · Post #2996 · 01.03.2025 г., 14:30

🤩 የየካቲት ወር የሲቢኢ ኮከቦች እንደተለመደው በጎፈሬ ደምቀዋል 🤩 ✨እንጦጦ ፓርክ ሲቢኢ ሩጫ✨ ❤️ ኢትዮጵያ ንግድ ባንክ 🤝 ጎፈሬ 🤝 ታላቁ ሩጫ ❤️ #Goferesportswear #Entotoparkrun#CBE#Greatethiopianrun