Answers for "QT hide show label"

C++
0

QT hide show 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