QString combostyleSheet =
"QComboBox { background-image: url(:/images/dropdown.png); color: black; border: 1px solid grey;border-style: solid; border-width: 1px; border-radius: 5px; border-color: grey;font-family: Arial, Helvetica, sans-serif; color:#000000; font-size:18px;}"
"QComboBox::down-arrow {image: url(noimage); border-width: 0px;}"
"QComboBox::drop-down { background-color: none; background-image: none; border: none; background: transparent;}"
"QComboBox QAbstractItemView {background-image: url(:/images/backgroundimg.jpg); border: 0px solid darkgray;color: white;background-color: black; selection-background-color: lightgray;}";
ui->comboBoxEventType->setStyle(new QWindowsStyle);//if use default "QS60Style" the List will come from bottom i.e. above "Options" key area.
//int count = ui->comboBoxEventType->count();
//for(int i=0; i<count;i++)
//ui->comboBoxEventType->model()->setData(ui->comboBoxEventType->model()->index(0, i), QSize(70, 50), Qt::SizeHintRole);
ui->comboBoxEventType->setStyleSheet(combostyleSheet);
QScrollBar *scrollbarComboBox = ui->comboBoxEventType->view()->verticalScrollBar();
scrollbarComboBox->setStyleSheet(
"QScrollBar { background-image: none; border: 0px solid grey; border-width: 0px; border-radius: 5px; width: 15px; border-color: grey; background: transparent;}"
"QScrollBar::handle {background-image: none; border: 1px solid grey;border-style: solid; border-width: 1px; border-radius: 5px; width: 15px; border-color: grey; background: lightgray; selection-background-color: lightgray; selection-color: yellow;selection-background-color: blue;}"
);