I want to change the background color of a QPlainTextEdit, how do I do this?
QPlainTextEdit
In order to modify the background, you need to modify the palette of your QPlainTextEdit and to set background visible:
myPlainTextEdit->setPalette(QPalette(/*Select the constructor you need*/)); myPlainTextEdit->setBackgroundVisible(true);