How to setup application so I can edit MenuBar in Design tool
-
I'm new to QT and am using 5.15 with Visual Studio 2019 on Windows 10. I am attempting to build a simple native style desktop application using QML/Quick.
I have successfully built an initial version of this application with a simple main.cpp which launches my base QML file. The latter specifies an ApplicationWindow with a basic MenuBar.
I'd like to switch to editing my MenuBar in Design but I can't work out how to do this. I did manage to create a Main Window Form (.ui) which allowed me to edit a menu, but this seems to be for use with C++ / Widgets rather than QML/Quick.
If I'm using QML/Quick how should I set up to make my MenuBar editable in Design?
Thanks