作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码,我试图在其中生成向左的动画幻灯片并显示以下 QMainWindow 并关闭它在函数中使用 QPropertyAnimation 的当前窗口,但它在这里不起作用我保留代码:
原点.py
from PyQt5.QtWidgets import QMainWindow,QApplication,QPushButton
from PyQt5 import QtCore
from segunda import MainTwo
class Main(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.Boton = QPushButton(self)
self.Boton.setText("Press")
self.Boton.clicked.connect(self.AnimaFunction)
self.next = MainTwo()
def AnimaFunction(self):
self.anima = QtCore.QPropertyAnimation(self.next.show(),b'geometry')
self.anima.setDuration(1000)
self.anima.setStartValue(QtCore.QRect(0,0,0,0))
self.anima.setEndValue(QtCore.QRect(self.next.geometry()))
self.anima.start()
app = QApplication([])
m = Main()
m.show()
m.resize(800,600)
app.exec_()
Segunda.py
from PyQt5.QtWidgets import QMainWindow,QApplication,QLabel
class MainTwo(QMainWindow):
def __init__(self):
QMainWindow.__init__(self)
self.Label = QLabel(self)
self.Label.setText("Soy la segunda ventana")
self.Label.resize(200,200)
最佳答案
您必须将窗口传递给 QPropertyAnimation
,而是传递 show 方法的返回值 None
,以便 QPropertyAnimation
将没有完成它的工作,考虑到上述解决方案是:
def AnimaFunction(self):
self.anima = QtCore.QPropertyAnimation(self.next, b'geometry')
self.anima.setDuration(1000)
self.anima.setStartValue(QtCore.QRect(0,0,0,0))
self.anima.setEndValue(QtCore.QRect(self.next.geometry()))
self.anima.start()
self.next.show()
self.hide()
关于python - 更改销售额时生成左翼幻灯片动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54977644/
我正在使用 Chart.js 创建图表。我在数据库中存储了一些日期和销售额。在这里,我使用 ajax 请求从数据库中选取记录,并通过将数据划分为两个不同的数组 date["2017-12-18","2
我正在尝试创建一个销售报告,用户可以在其中查看每天、每周和每月的销售额。 这是我的 table : CREATE TABLE IF NOT EXISTS `sales_act` ( `id`
我有一张包含 customer_number、week 和 sales 的表。我需要检查每个客户是否连续 12 周没有销售,并创建一个 0/1 的标志。 我可以检查过去 12 周或特定时间范围,但
我尝试了一些方法,到目前为止,这是唯一没有抛出错误的方法,但结果不会在我的页面上回显,所以我不太确定发生了什么。 $query = "SELECT SUM(sales.total) AS sales_
我是一名优秀的程序员,十分优秀!