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

Резултати

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

Пребарај: #thomasstanley

当前筛选 #thomasstanley清除筛选
MONEY SECRETS

@businessideas101 · Post #1091 · 13.11.2024 г., 17:58

𝟏𝟎 𝐥𝐞𝐬𝐬𝐨𝐧𝐬 𝐥𝐞𝐚𝐫𝐧𝐞𝐝 𝐟𝐫𝐨𝐦 𝐭𝐡𝐞 𝐛𝐨𝐨𝐤 "𝐓𝐡𝐞 𝐌𝐢𝐥𝐥𝐢𝐨𝐧𝐚𝐢𝐫𝐞 𝐌𝐢𝐧𝐝" 1. The millionaire mind is different from the average mind. Millionaires think differently about money and wealth than most people. They have a different set of beliefs, values, and attitudes about money. 2. Millionaires are self-made. They did not inherit their wealth. They created it through hard work, dedication, and smart financial decisions. 3. Millionaires are focused on their goals. They have a clear vision for what they want to achieve in life, and they are laser-focused on achieving their goals. 4. Millionaires are good with money. They know how to make money, save money, and invest money. They are also good at managing their money. 5. Millionaires are risk takers. They are not afraid to take risks, even if it means taking on debt or investing in risky ventures. 6. Millionaires are persistent. They do not give up easily. They keep trying until they achieve their goals. 7. Millionaires are positive. They believe in themselves and their ability to achieve success. They are also optimistic about the future. 8. Millionaires are generous. They give back to their community and to others in need. They also donate to charity and volunteer their time. 9. Millionaires are happy. They are content with their lives and they enjoy their work. They are also grateful for what they have. 10. Millionaires are role models. They inspire others to achieve their own dreams of wealth and success. #themillionairemind#thomasstanley#motivation#success#bookreview