qt介面之QLabel可以分行顯示資料

2021-09-27 02:17:17 字數 887 閱讀 2398

一:使用方式向label不斷地寫入資料,可以不斷地追加資料(但是也有個問題就是資料會重複的新增)

在。**件中

#ifndef mainwindow_h

#define mainwindow_h

#include #include #include #pragma execution_character_set("utf-8")

namespace ui

class mainwindow : public qmainwindow

;#endif // mainwindow_h

在.cpp檔案中:

#include "mainwindow.h"

#include "ui_mainwindow.h"

mainwindow::mainwindow(qwidget *parent) :

qmainwindow(parent),

ui(new ui::mainwindow)

mainwindow::~mainwindow()

void mainwindow::on_pushbutton_clicked()

void mainwindow::on_pushbutton_2_clicked()

void mainwindow::slot_receive(int x)

if(x == 1)

}

在main函式中:

#include "mainwindow.h"

介面檔案表示:

Qt 之 QLabel 設定面罩

qlabel 是qt 中的標籤類,一般情況我們只是設定文字描述,但是qlabel不僅僅只是顯示一些文字介紹那麼簡單。qlabel支援html中標籤的使用,同時可以設定普通和動態圖。這裡簡單介紹一下如何為qlable設定面罩。很簡單,通過設定不同形狀的面罩可以達到不同的效果。1 設定動態 qpixma...

Qt開發之QLabel簡單介紹

qlabel是qt開發中標籤元件,提供了乙個文字或圖形顯示,沒有提供使用者互動功能 有以下幾種標籤 1 純文字 使用的settext 設定乙個qstring 2 富文字 使用的settext 設定乙個富文字qstring 3 影象 使用的setpixmap設定影象 4 動畫 使用的setmovie ...

label qt 自動換行 Qt之QLabel

這邊整理一下由這篇文章中彙總的幾個用法,因為 還算是比較簡單的,所以我就不重複了。對齊方式 setalignment qt aligncenter setstylesheet qproperty alignment alignbottom alignright 自動換行 setwordwrap tr...