In this article we will see how we can set style sheet to the date edit. Setting style sheet makes the date edit look unique with the help of style sheet we can set color, border and many other things to the date edit.
In order to do this we use setStyleSheet
method with the QDateEdit object
Syntax : date.setStyleSheet(code)
Argument : It takes string as argument
Return : It returns None
Below is the sample stylesheet code
QDateEdit
{
border : 2px solid black;
background-color : white;
padding : 5px;
}
QDateEdit::up-arraow
{
border : 2px solid black;
background-color : lightgreen;
}
QDateEdit::down-arrow
{
border : 2px solid black;
background-color : red;
}
Below is the implementation
from PyQt5.QtWidgets import *
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class Window(QMainWindow):
def __init__( self ):
super ().__init__()
self .setWindowTitle( "Python " )
self .setGeometry( 100 , 100 , 500 , 400 )
self .UiComponents()
self .show()
def UiComponents( self ):
date = QDateEdit( self )
date.setGeometry( 100 , 100 , 200 , 40 )
a_flag = Qt.AlignCenter
date.setAlignment(a_flag)
date.setStyleSheet( "QDateEdit"
"{"
"border : 2px solid black;"
"background : white;"
"padding : 5px;"
"}"
"QDateEdit::up-arrow"
"{"
"border : 2px solid black;"
"background-color : lightgreen;"
"}"
"QDateEdit::down-arrow"
"{"
"border : 2px solid black;"
"background-color : red;"
"}"
)
App = QApplication(sys.argv)
window = Window()
sys.exit(App. exec ())
|
Output :

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
07 Jul, 2020
Like Article
Save Article