Qt design studio file from Windows to Raspberry Pi
-
Hello everyone,
i created a Design in Qt design studio on my Windows because i need a GUI for a Project in my school.
We want to run the GUI on a Raspberry Pi.
Is it possible to run the file i created on my Windows to run on my Pi?
I tried a little bit with the qml files but it didn't worked and now i dont know what to do.Thanks.
-
@Marzonek said in Qt design studio file from Windows to Raspberry Pi:
i created a Design in Qt design studio on my Windows because i need a GUI for a Project in my school.
Hi,
did you wrote an app or only the
.ui
/*.qml
file(s) in QtDesigner / Qt Design Studio?Is it possible to run the file i created on my Windows to run on my Pi?
There is not such thing as "running the GUI file". You need to use it in an app with Qt.
You need to create an app, with or without QML and then compile it for your Raspberry Pi device.
One possibility how to proceed is shown in this Video here.
Use the latest versions and not the ones shown in the video though.
If you already made a QML design, you can copy the code to re-use it, as working with Qt is platform independent. -