#if 1
QDateTimeEdit date;
date.setStyleSheet("QDateTimeEdit::drop-down {\
width: 80px; \
border-left-width: 0px; \
border-image:url(:/image/dateEdit.png);\
border-left-color: gray; \
}");
date.setCalendarPopup(true);
date.show();
#else
QDateEdit date;
date.setDisplayFormat("yyyy-MM-dd hh:mm:ss.zzz");
date.setStyleSheet("QDateEdit::drop-down {\
width: 80px; \
border-left-width: 0px; \
border-image:url(:/image/dateEdit.png);\
border-left-color: gray; \
}");
date.setCalendarPopup(true);
date.show();
#endif