qt 4.7组件设置背景色,并填充

setAutoFillBackground( true ); //这一句必需要,否则设置背景色失败 

  QPalette plt = palette();

    plt.setColor(QPalette::Window,Qt::green);
    this->setPalette(plt);

你可能感兴趣的:(qt)