#PyQt
文章平均质量分 94
飞龙在天max
这个作者很懒,什么都没留下…
展开
-
PyQt tutorial 5-Dialogs in PyQt5
对话框Dialog windows or dialogs are an indispensable(不可或缺) part of most modern GUI applications. A dialog is defined as a conversation between two or more persons. In a computer application a dialog is ...翻译 2019-12-17 19:33:31 · 169 阅读 · 0 评论 -
PyQt tutorial 4-Events and signals in PyQt5
In this part of the PyQt5 programming tutorial, we will explore events and signals occurring in applications.1. EventsGUI applications are event-driven. Events are generated mainly by the user of an...翻译 2019-12-16 22:51:49 · 139 阅读 · 1 评论 -
PyQt5 tutorial 3-Layout management in PyQt5
Layout(布局) management in PyQt5Layout management is the way how we place the widgets on the application window. We can place our widgets(小工具) using absolute positioning or with layout classes. Managin...翻译 2019-12-15 20:14:29 · 111 阅读 · 0 评论 -
PyQt5 tutorial 2-Menus and toolbars
菜单和工具栏In this part of the PyQt5 tutorial, we create a statusbar, menubar and a toolbar. A menu is a group of commands located in a menubar. A toolbar has buttons with some common commands in the appl...翻译 2019-12-11 10:50:26 · 187 阅读 · 1 评论 -
PyQt5 tutorial 1-First programs in PyQt5
In this part of the PyQt5 tutorial we learn some basic functionality. The examples show a tooltip and an icon, close a window, show a message box and center a window on the desktop.1. Simple example...翻译 2019-12-08 15:29:59 · 277 阅读 · 0 评论