Qt Designer 在哪里存储信号到槽的连接?

Where does Qt Designer store the signal to slot connections?

在 Qt Designer 中,我已将按钮连接到插槽。 但是这些信息存储在哪里? 我在 (xml) ui 文件中找不到它。

(另外,我想解除连接,怎么办?)

所有已命名的插槽:

void on_<object name>_<signal name>(<signal parameters>);

automatically connected到指定的widget和signal,在ui->setupUi方法被调用之后。