camera_window.start_button.clicked.connect(another_window.show)
时间: 2024-06-06 22:10:36 浏览: 72
MFC_BUTTON_TEST.zip_button_button MFC
This line of code connects a signal called "clicked" emitted by the start_button object in the camera_window to the show() method of another_window. This means that when the start_button is clicked, the another_window will be shown.
阅读全文