PyQt5 QCalendarWidget 使大小完全适合
在这篇文章中,我们将看到如何使QCalendarWidget的大小与外观完全吻合,即大小不应该大,也不应该小。日历是一个大的部件,因此有时设计者会错误地将尺寸变小,而只有日历的某些部分是可见的。它可以通过手动改变大小来调整,但这需要花费时间去打和试的方法,而且它也不准确。
为了做到这一点,我们将使用QCalendarWidget对象的adjustsize方法。
语法: calendar.adjustsize()
参数: 它不需要参数
执行的动作: 它返回无
下面是实现
# importing libraries
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__()
# setting title
self.setWindowTitle("Python ")
# setting geometry
self.setGeometry(100, 100, 600, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for components
def UiComponents(self):
# creating a QCalendarWidget object
self.calendar = QCalendarWidget(self)
# setting geometry to the calendar
self.calendar.setGeometry(450, 50, 100, 100)
# creating another calendar
geek_calendar = QCalendarWidget(self)
# adjusting the size of geek calendar
geek_calendar.adjustSize()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出: