怎么使QComboBox与上面QLineEdit对齐且长度相等呀?(急求)

怎么使QComboBox与上面QLineEdit对齐且长度相等呀?(急求)_第1张图片怎么使QComboBox与上面QLineEdit对齐且长度相等呀?(急求)_第2张图片

 

怎么使QComboBox与上面QLineEdit对齐且长度相等呀?(急求)_第3张图片以下是代码:
//井文件名
   QHBoxLayout   *wellNameHLyt    = new QHBoxLayout;
   QLabel        *wellNameLb = new QLabel(tr("井文件名:"));
   QLineEdit     *wellNameLEdit = new QLineEdit;
   wellNameHLyt->addWidget(wellNameLb);
   wellNameHLyt->addWidget(wellNameLEdit);

  //信息类型
QHBoxLayout   *infoTypeHLyt  = new QHBoxLayout;
   QLabel        *infoTypeLb = new QLabel(tr("信息类型:"));
   QComboBox     *infoTypeCBox = new QComboBox;
   infoTypeCBox->resize(200,140);
   infoTypeCBox->addItem(tr("weapon"));
   infoTypeCBox->addItem(tr("human"));
   infoTypeCBox->addItem(tr("evironment"));
   infoTypeHLyt->addWidget(infoTypeLb);
   infoTypeHLyt->addWidget(infoTypeCBox);

你可能感兴趣的:(怎么使QComboBox与上面QLineEdit对齐且长度相等呀?(急求))