diff --git a/bin/xyylMCWEACSystem.exe b/bin/xyylMCWEACSystem.exe index 81bbddb..8c1be4d 100644 Binary files a/bin/xyylMCWEACSystem.exe and b/bin/xyylMCWEACSystem.exe differ diff --git a/xyylMCWEACSystem/parametersettingswidget.cpp b/xyylMCWEACSystem/parametersettingswidget.cpp index 894acc3..26f71f4 100644 --- a/xyylMCWEACSystem/parametersettingswidget.cpp +++ b/xyylMCWEACSystem/parametersettingswidget.cpp @@ -80,20 +80,54 @@ ParameterSettingsWidget::ParameterSettingsWidget(QWidget *parent ) QWidget * w = new QWidget; - setObjectName("paramawidget"); - this->setStyleSheet("QWidget \ - {\ - background-color:white;\ - border-radius:10px;\ - }"\ - ); + + setStyleSheet("QWidget \ + {\ + background-color:white;\ + border-radius:10px;\ + }"); w->setLayout(vlay); QHBoxLayout * hlayall = new QHBoxLayout; hlayall->addWidget(w); setLayout(hlayall); + m_btnOK.setStyleSheet("QPushButton{\ + background: white;\ + border-radius:10px;padding:7px 10px;\ + }\ + QPushButton:hover{\ + background: #0d9ddb;\ + border-radius:10px;padding:7px 10px;\ + }\ + QPushButton:pressed{\ + background: #0d9ddb;\ + border-radius:10px;padding:7px 10px;\ + }\ + QPushButton:checked{\ + background: #0d9ddb;\ + border-radius:10px;padding:7px 10px;\ + }"); + m_btncanCel.setStyleSheet("QPushButton{\ + background: white;\ + border-radius:10px;padding:7px 10px;\ + }\ + QPushButton:hover{\ + background: #0d9ddb;\ + border-radius:10px;padding:7px 10px;\ + }\ + QPushButton:pressed{\ + background: #0d9ddb;\ + border-radius:10px;padding:7px 10px;\ + }\ + QPushButton:checked{\ + background: #0d9ddb;\ + border-radius:10px;padding:7px 10px;\ + }"); + + m_btncanCel.setMinimumWidth(100); + m_btnOK.setMinimumWidth(100); } ParameterSettingsWidget::~ParameterSettingsWidget() {