Answers for "QT show hide label"

C++
0

QT show hide label

void MainWindow::display() 
{
	label->setVisible(!label->isVisible());// Set the status as the opposite
}
Posted by: Guest on April-20-2021

Browse Popular Code Answers by Language