0

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?

2 Answers2

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