How class.ui is shown, when class::show() function is called?
Unsolved
General and Desktop
-
You can actually step into
setupUi(this)
in debug mode and see exaclty every operation that is executed -
@VRonin
I think main class inherits the UI class. This is the code snippet from ui_busmain.h file:
namespace Ui {
class BusMain: public Ui_BusMain {};
} // namespace Ui -
uic will generate all the code for
Ui_BusMain
you can step into that class with your debugger no problem