更改标签中的数字

时间:2019-06-29 20:03:58

标签: c++ qt

您需要更改label_3的值,同时要考虑到有一个数字。问题是Label只接受QString的数据类型。我想指出,该值不仅应该改变,还应该增加。

代码:

    srand(time(NULL));
    int random = rand() % 4;
    if (random == 0) {
        QMessageBox::information(this, "Search...", "You find materials! [+1]");
        // Here add to label_3 + 1
    }
    // Continue...

0 个答案:

没有答案