You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #pragma once
- #include "hmibutton.h"
- #include "hmiled.h"
- #include <QString>
-
- // HMI控件工厂类(静态类,用于创建HMI控件)
- class HmiWidgetFactory {
- public:
- // 静态方法:根据名称创建对应的HMI控件
- static HmiControlItem* createItem(const QString& name);
- };
|