I saved the newly converted "form.ui" as the same name. (I actually just opened it in the Qt Designer which is able to convert the .ui file automatically. You may aswell convert it with uic3.)Originally Posted by Philip_Anselmo
The user interface compiler (uic) generates a header file of the form named in this way:
Which is the file we must include in order to be able to use the form.%.ui -> ui_%.h ("form.ui" -> "ui_form.h")
There are basically 3 different ways of using a form designed in the designer. The direct approach is a quick and simple way to use forms, but is very inflexible. You surely want to use one of the 2 other ways. Read more about these by following the link below.
Further documentation: Using a component in Your Application
Bookmarks