일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- lg smart recovery
- pyside6
- smartrobot board
- JTAG
- U-boot
- ICbanq
- emIDE
- CMSIS
- Z435
- 마스보드
- Cortex-M3
- QT
- STM32F10x
- Marsboard
- usb부팅
- Galileo Gen2
- ft2232
- openocd
- 우분투
- ubuntu
- Boyue
- 갈릴레오
- ares note
- Python
- HerkuleX
- DRS-0101
- fdisk
- 동부로봇
- galileo
- 허큘렉스
- Today
- Total
목록Python (5)
Life Seed

https://doc.qt.io/qtforpython-6/index.html 사이트의 Tutorial에 대한 내용을 정리입니다.Tutorials 를 클릭하여 확인할 수 있습니다. https://doc.qt.io/qtforpython-6/tutorials/index.html "> 1. Basic Button버튼을 클릭시 "Button clicked, Hello!" 라는 문구를 터미널에 출력한다. import sysfrom PySide6.QtWidgets import QApplication, QPushButtonfrom PySide6.QtCore import Slot# Greetings# The @Slot() is a decorator that identifies a function as a slot. # ..

"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다." "> https://doc.qt.io/qtforpython-6/index.html 사이트의 Tutorial에 대한 내용을 정리한다. Tutorials 를 클릭하여 확인할 수 있다. 출처 :: Qt for Python Tutorials https://doc.qt.io/qtforpython-6/tutorials/index.html Tutorials - Qt for PythonBasic ui files Using .ui files from Designer or QtCreator with QUiLoader and pyside6-uicdoc.qt.io 오늘의 첫번째 예제는 QtWidgets 중 QLabel에 대한 사용예..

pyside는 아니지만....test용 코드를 구현할때 유용하게 쓰이는 코드 두가지를 소개합니다.하나는 입력을 위한 팝업창이며또 하나는 알림을 위한 팝업창입니다.console 모드 test 코드에서 유용하게 사용하고 있네요. 1. Prompt 입력console 모드에서 input을 이용해서 데이터 입력을 받는 대신 팝업으로 GUI를 보여 준다. 입력창에 키워드를 입력하고 OK를 누르면 입력값을 변수로 저장해서 사용할 수 있다. 1) 패키지 설치 pyautogui 패키지를 설치해야 한다.pip install pyautogui 2) codeimport pyautogui as guikeyword = gui.prompt(text='검색 키워드를 입력하세요', title='키워드 입력창') title : 팝업창..

출처 : https://doc.qt.io/qtforpython-6/gettingstarted.html#getting-started Getting Started - Qt for PythonWhat is Qt Qt, QML, Widgets… What is the difference?doc.qt.io QT Application 중 QML을 이용한 첫번째 예제입니다. 1. QML 작성Example 폴더를 생성하여 Main.qml 이라는 파일로 QML Language file을 생성합니다.import QtQuickimport QtQuick.Controlsimport QtQuick.LayoutsWindow { width: 300 height: 200 visible: true title: "H..

출처 : https://doc.qt.io/qtforpython-6/gettingstarted.html#getting-started Getting Started - Qt for PythonWhat is Qt Qt, QML, Widgets… What is the difference?doc.qt.io 오늘은 설치된 Pyside API를 이용한 첫번째 어플리케이션입니다. 텍스트 창과 Click me! 라는 버튼으로 구성된 간단한 어플리케이션입니다.Click me! 버튼을 클릭할 때 마다 인사말이 다음과 같이 변경됩니다.["Hallo Welt" -> "Hei maailma" -> "Hola Mundo" -> "Привет мир" -> "Hallo Welt" ...] Source Codeimport sysimp..