zoukankan      html  css  js  c++  java
  • 2. 一些小函数

    摘要: 比较重要的函数。  哪有不重要的函数呢?   标题就这样起,有合适的名字再改。

    -----------------------------------------------------------------------------------------------------------

    1.  int QDialog::exec() [slot]

    帮助文档:

    int QDialog::exec () [slot]

      Shows the dialog as a modal dialog, blocking until the user closes it. The function returns a DialogCode result.

    If the dialog is application modal, users cannot interact with any other window in the same application until they close the dialog. If the dialog is window modal, only interaction with the parent window is blocked while the dialog is open. By default, the dialog is application modal.

    ==================================

    2. void QDialog::accepted ()  [signal]

    帮助文档

    void QDialog::accepted ()  [signal]

    This signal is emitted when the dialog has been accepted either by the user or by calling accept() or done() with the QDialog::Accepted argument.

    Note that this signal is not emitted when hiding the dialog with hide() or setVisible(false). This includes deleting the dialog while it is visible.

    This function was introduced in Qt 4.1.

    ===================================

  • 相关阅读:
    个人总结
    第三次个人作业
    第二次结对作业
    第一次结对作业
    第二次个人编程作业
    第一次博客编程作业
    第一次随笔作业
    BUAA_2020_软件工程_提问回顾与总结
    BUAA_2020_软件工程_软件案例分析作业
    BUAA_2020_软件工程_结对项目作业
  • 原文地址:https://www.cnblogs.com/584709796-qq-com/p/4890480.html
Copyright © 2011-2022 走看看