QString l_sStyleSheet = "QComboBox::drop-down {\
border-image: url(res/ST_icon_pull-down_r.png) 5;\
border-width: 5;\
}\
QComboBox{\
border-image: url(res/ST_icon_pull-down_base.png) 5;\
border-width: 5;\
}\
";
QComboBox* temp = new QComboBox(this);
temp->setStyleSheet(l_sStyleSheet);
temp->addItem("test1");
temp->addItem("test2");
temp->addItem("test3");
temp->setGeometry(0, 0, 480, 100);
QStyle* tempStyle = temp->style();