QUiLoader 仅创建基础 类 个自定义小部件

QUiLoader only creates base classes of custom widgets

我正在尝试使用 QUiLoader 加载包含自定义小部件的 ui 文件。

我的自定义小部件(称为 CustomButton)继承自 QPushButton。 ui 文件已加载并放入我的主布局中,但所有 CustomButtons 都只是 QPushButtons。似乎 QUiLoader 将我所有的自定义小部件创建为它们的基础实例 类.

我就是这样做的:

QUILoader loader;
loader.addPluginPath(MY_PLUGIN_PATH);

QStringList availableWidgets = loader.availableWidgets();

//fail if "CustomButton" is not available
if (!availableWidgets.contains("CustomButton")) {
  return false;
}
//here I see that availableWidgets contain my "CustomButton"!

QString qFileName(MY_UI_FILE_PATH); 
QFile file(qFileName);
file.open(QFile::ReadOnly);

//"mainFrame" is a QFrame in my main ui
QWidget *customWidget = loader.load(&file, mainframe);
file.close();

//layout
mainframe->layout()->addWidget(customWidget);

//Note: There are no QPushButtons in my ui file! There are only CustomButtons!

//Now I try to find my custom buttons
QList<QPushButton*> list1 = customWidget->findChildren<QPushButton *>();     //all my CustomButtons are listed here
QList<CustomButton*> list2 = customWidget->findChildren<CustomButton *>();   //this list is empty

// 我在 CustomButton 的构造函数中也有一个从未被命中的断点。

我做错了什么?

我发现,QUiLoader 实际上创建了我的自定义按钮!

只有 findChildren() 方法似乎是错误的,因为它没有找到我的 CustomButtons,而是 QPushButtons。