How to connect to .ui forms?
I am a begginer in qt i am facing a prob in connecting two .ui forms. Means i have a main window and a button on that "next" i want to connect a another form with this button. Simply i want clicking on next button will redirect to the oth开发者_JS百科er form. How it should done? Guide me. Thanks.
In your main window's class, create a slot that is run when the next button is pressed. In that slot, create your new window and show it, then hide the main window.
精彩评论