Python 和 Qt - 函数重载
我有一个从 QtGui.QDialog 继承的应用程序类。 我必须重新加载显示功能但保存功能。 我从 C# 中得到了这个想法。 在那里我可以做这样的事情:
static void show()
{
// My code...
base.show();
}
我想做类似的事情,但是使用 python 和 qt (PyQt)。 我可以这样做吗?
i have an application class inherited from QtGui.QDialog.
I have to reload show-function but save functionality. I take this idea from C#.
There i could do something like this:
static void show()
{
// My code...
base.show();
}
I want to do something like that but with python and qt (PyQt). Can i do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 super() 函数,但请注意一些 陷阱。
Checkout the super() function but note some pitfalls.