I have created a Qt Application project in Visual Studio. It generates one .ui file for the main window. What if I want to add another window?
Asked
Active
Viewed 2,346 times
2 Answers
3
If you use visual studio 2013 and Qt 5, right click your project in solution explorer and select Add -> Class... to launch Add Class dialog.
You can create Qt5GuiClass for your new window in the dialog.

H. Tsubota
- 91
- 6
1
From the Solution Explorer of you Visual studio, right click on the Form files -> Add new Item -> Qt forms from there select Qt Dialog form (.ui)

JannaBotna
- 27
- 8
-
1And what is `Form files -> Add new Item -> Qt forms` doesn't exist? – Vitalii Dec 17 '15 at 13:51