Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Qt Builder 创建一个简单的窗口。
我使用菜单编辑器添加了一个菜单。
现在,我想出了如何将菜单项之一连接到close()主窗口的方法。我的问题是如何在主窗口中添加一个插槽。这是我所拥有的:
close()
private slots: void OnAbout();
但是,我无法在“信号和插槽编辑器”中显示此方法。我怎样才能让它出现?
我终于弄明白了。您必须选择主窗口并按 F4 将功能添加到窗口的插槽中。