JIoMapPage.cpp 455 B

12345678910111213141516171819
  1. #include "JIoMapPage.h"
  2. JIoMapPage::JIoMapPage() {}
  3. QWidget* JIoMapPage::CreateIoPage()
  4. {
  5. // 创建垂直布局
  6. QHBoxLayout* pHLayout = new QHBoxLayout();
  7. ClickCircleLabel* pIoState = new ClickCircleLabel();
  8. QLabel* pAxisNmae = new QLabel(tr("AxisNmae","轴名称"));
  9. pHLayout->addWidget(pAxisNmae);
  10. pHLayout->addWidget(pIoState);
  11. QWidget* pWidget = new QWidget;
  12. pWidget->setLayout(pHLayout);
  13. return pWidget;
  14. }