书栈网 · BookStack 本次搜索耗时 0.063 秒,为您找到 771 个相关结果.
  • 控件(2)

    2940 2018-02-27 《PyQt5中文教程》
    控件2 图片 行编辑 QSplitter 下拉选框 控件2 本章我们继续介绍PyQt5控件。这次的有QPixmap ,QLineEdit ,QSplitter ,和QComboBox 。 图片 QPixmap 是处理图片的组件。本例中,我们使用QPixmap 在窗口里显示一张图片。 #!/usr/bin/python3 # -*-...
  • 自定义组件

    2723 2018-02-27 《PyQt5中文教程》
    自定义控件 Burning widget 自定义控件 PyQt5有丰富的组件,但是肯定满足不了所有开发者的所有需求,PyQt5只提供了基本的组件,像按钮,文本,滑块等。如果你还需要其他的模块,应该尝试自己去自定义一些。 自定义组件使用绘画工具创建,有两个基本方式:根据已有的创建或改进;通过自己绘图创建。 Burning widget 这个组...
  • Building an Application

    1705 2021-10-08 《Qt6 QML Book》
    Building an Application Running QML from Python Exposing Python Objects to QML Signals and Slots Properties Exposing a Python class to QML A Model from Python Building an ...
  • 剪贴板

    1239 2019-05-26 《Qt 学习之路 2》
    剪贴板的操作经常和前面所说的拖放技术在一起使用。大家对剪贴板都很熟悉。我们可以简单地把它理解成一个数据存储池,外面的数据可以存进去,里面数据也可以取出来。剪贴板是由操作系统维护的,所以这提供了跨应用程序的数据交互的一种方式。Qt 已经为我们封装好很多关于剪贴板的操作,我们可以在自己的应用中很容易实现对剪贴板的支持,代码实现起来也是很简单的: class ...
  • GraphView

    GraphView GraphView class GraphView : public QAbstractScrollArea Subclassed by CutterGraphView , OverviewView Public Types enum Layout Values: enumerator GridNarrow ...
  • CukeTest 自动化介绍

    CukeTest自动化介绍 支持的自动化类型 CukeTest使用介绍 自动化介绍 CukeTest自动化介绍 支持的自动化类型 CukeTest目前提供了各个平台的支持,不同平台的能力支持如下: 能力 Windows Linux* Mac Web ✔ ✔ ✔ Mobile ✔ ✔ ✔ Windows应用、.NET、WPF ✔ Qt ...
  • Positioning Elements

    682 2021-10-08 《Qt6 QML Book》
    Positioning Elements Positioning Elements There are a number of QML elements used to position items. These are called positioners, of which the Qt Quick module provides the foll...
  • Windows

    Option A: Automatic Windows builds Prerequisites Build procedure Option B: Custom Windows builds Prerequisites Build procedure 1. Get the source code 2. Get the dependencies ...
  • 俄罗斯方块游戏

    3011 2018-02-27 《PyQt5中文教程》
    俄罗斯方块游戏 Tetris 开发 俄罗斯方块游戏 本章我们要制作一个俄罗斯方块游戏。 Tetris 译注:称呼:方块是由四个小方格组成的 俄罗斯方块游戏是世界上最流行的游戏之一。是由一名叫Alexey Pajitnov的俄罗斯程序员在1985年制作的,从那时起,这个游戏就风靡了各个游戏平台。 俄罗斯方块归类为下落块迷宫游戏。游戏...
  • An Image Viewer

    952 2021-10-08 《Qt6 QML Book》
    An Image Viewer The Desktop Version Moving to Mobile A Shared Codebase Native Dialogs An Image Viewer Let’s look at a larger example of how Qt Quick Controls are used. For t...