1. 程式人生 > >QTextEdit新增內容與Qt在Vs中中文顯示亂碼問題解決

QTextEdit新增內容與Qt在Vs中中文顯示亂碼問題解決

vs中Qt中文顯示亂碼解決

最簡單的方法:

#pragma execution_character_set("utf-8")


QTextEdit  *m_textShower = new QTextEdit();

(1)設定字型的方法

QFonttextFont;

textFont.setPointSize(16);

m_textShower->setFont(textFont);


(2)設定編輯為只讀屬性的方法

m_textShower->setReadOnly(true);


(3)設定文字的方法

QTextCursor

csor = m_textShower->textCursor();

csor.movePosition(QTextCursor::Start);

csor.insertText(fileContext);


4)清除文字的方法

m_textShower->clear();


另外一種方法直接用它自身的方法append即可

m_textShower->append("你先新增的字串")



vs中Qt中文顯示亂碼解決

最簡單的方法:

#pragma execution_character_set("utf-8")