I created a Form in QT as a Widget and I need it to appear at the touch of a button and it could be controlled by the main window. It means that the Form appears on top of the main window.

  • Nothing is clear. Do you want the button to open the non-modal Form dialog box? Do you have a form - is it only a form (a file with a ui extension) or a full-fledged widget class? - Dimanesson
  • Most likely you created a ui file of the form, a ui file is just an xml document that describes the form elements, and which you can then either edit in the designer, or connect in the code via setupUi() . And to make a full-fledged standalone widget that is simply used by creating a class object, when adding, you need to select Qt Designer Form Class . - Vyacheslav Savchenko
  • Well thank you. - Astemir Tsechoev

0