프로그래밍

그림 넣으면 자동으로 gui 코드생성하는 AI 없냐?

 

 

스크린샷 2024-03-12 172811.png

대충 그림 넣으면 자동으로 GUI 코드 생성해주는 AI 없냐??

아 만들어야하는데 줜나 귀찮누.. 이거 개노가다 잖녀..

 

파이썬에서 개발할껀데 아직 어떤 API 쓸지는 안정했다..

 

자동생성만된다면 아무거나 사용할란다.

 

8개의 댓글

파이썬은 모르겠는데 리엑트는 있음 찾아보셈

 

0
2024.03.12
@히오스브론즈5티어

고마어~

0
2024.03.12

금방 만들거같은데 이정도면

0
ye
2024.03.12

파이썬에 선언형 UI 라이브러리 읍나

0
2024.03.12

https://www.youtube.com/watch?v=aaendvL3OEU

웹은 있는데 파이썬 코드로 딱 짜주는건 구하기 힘들듯

0
2024.03.12

코딩 애플인가 유튜브 영상에서 그림 그리면 css js 그려주는 서비스 소개해줬음

0
2024.03.12

Gpt 가 먼거 만들어 주는데? 움직이는지는 모름

import sys

from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QHBoxLayout, QLabel, QPushButton

 

class TestUI(QWidget):

def __init__(self):

super().__init__()

self.initUI()

 

def initUI(self):

# Overall layout

self.vbox = QVBoxLayout()

 

# Comport and bps

self.hbox_comport = QHBoxLayout()

self.label_comport = QLabel('Comport')

self.value_comport = QLabel('COM01')

self.hbox_comport.addWidget(self.label_comport)

self.hbox_comport.addWidget(self.value_comport)

 

self.hbox_bps = QHBoxLayout()

self.label_bps = QLabel('bps')

self.value_bps = QLabel('115200')

self.hbox_bps.addWidget(self.label_bps)

self.hbox_bps.addWidget(self.value_bps)

 

# Add to vbox

self.vbox.addLayout(self.hbox_comport)

self.vbox.addLayout(self.hbox_bps)

 

# Test buttons with status

self.test_buttons = {

'FLASH': QPushButton('FLASH'),

'BLE': QPushButton('BLE'),

'A121': QPushButton('A121'),

'ADC': QPushButton('ADC'),

'Wireless': QPushButton('Wireless'),

'WatchDog': QPushButton('WatchDog'),

'연속 테스트': QPushButton('연속 테스트'),

'연속 테스트 기능': QPushButton('연속 테스트 기능'),

}

 

# Initialize all buttons

for test, button in self.test_buttons.items():

self.vbox.addWidget(button)

button.clicked.connect(self.testClicked)

 

# Set the layout to the window

self.setLayout(self.vbox)

self.setGeometry(300, 300, 300, 200)

self.setWindowTitle('Test UI')

self.show()

 

def testClicked(self):

button = self.sender()

button_name = button.text()

# Logic to handle button click

# This is where you would add the test logic for each button

# For now, it will just print the button name

print(f'{button_name} Clicked!')

 

if __name__ == '__main__':

app = QApplication(sys.argv)

ex = TestUI()

sys.exit(app.exec_())

0
2024.03.12
@우투부

헐 ㅋzz 한번해볼게

0
무분별한 사용은 차단될 수 있습니다.
번호 제목 글쓴이 추천 수 날짜 조회 수
5701 [프로그래밍] 마리아DB mediumtext 그냥 쓰고 싶은데 17 잉텔 0 13 시간 전 123
5700 [프로그래밍] 안드로이드 씹뉴비 질문이요 1 집에가게해줘 0 14 시간 전 72
5699 [프로그래밍] c언어 7년했는데 이런게 되는거 처음알았음.. 4 케로로중사 0 1 일 전 639
5698 [프로그래밍] 파이썬 1도 모르는데 GPT로 프로그램 뚝딱 만듬 2 푸르딩딩 1 5 일 전 586
5697 [프로그래밍] 담주 면접잡혔는데 8 삐라루꾸 0 5 일 전 356
5696 [프로그래밍] 아두이노 부트로더를 구웠는데.. 4 렙이말한다ㅡ니가옳다 0 5 일 전 213
5695 [프로그래밍] IOS 개발자 있나여? 1 g4eng 0 8 일 전 236
5694 [프로그래밍] 시스템 디자인 인터뷰 준비 도움좀!!! 1 Nognhyup 0 8 일 전 186
5693 [프로그래밍] 최근에 vscode 쓴 사람 도움! 3 172102 0 9 일 전 435
5692 [프로그래밍] 책을 또 사버리고 말았다... 1 찰나생멸 2 10 일 전 424
5691 [프로그래밍] 윈도우 부팅화면 봐주실분 1 바나나맛두부 0 12 일 전 233
5690 [프로그래밍] 아 시발 퇴사마렵다 9 인간지표 0 13 일 전 588
5689 [프로그래밍] C#이 ㅈ사기 언어인 이유 19 ye 6 14 일 전 1168
5688 [프로그래밍] 요즘 모바일 개발은 어떤 걸 사용하나요? 14 커피좋아용 0 16 일 전 528
5687 [프로그래밍] 취준생 안드로이드 팀플 주제 머할까요... 8 조강현 0 17 일 전 285
5686 [프로그래밍] 공통코드테이블은 대체 왜 만드냐 9 잠적자 0 18 일 전 604
5685 [프로그래밍] 토이프로젝트 주제 선정 3 개드립눈팅1세대 0 18 일 전 280
5684 [프로그래밍] 엥 구글 플러터 유기각 재는거임?? 4 최수연 0 20 일 전 555
5683 [프로그래밍] 반도체 장비 업계인 있음? 9 캡틴띠모 0 21 일 전 430
5682 [프로그래밍] 안드로이드 책 추천좀 6 집에가게해줘 0 22 일 전 211