取消qt窗口最大最小化

setWindowFlags(windowFlags() &~ Qt::WindowMinMaxButtonsHint);

setWindowFlags(windowFlags() &~ Qt::WindowCloseButtonHint);   //Qt::WindowCloseButtonHint其实是一个值 0x00080000

       这里的“&~”是取反以后再按位与的意思,下面的“|”是按位或的意思。

       但是如果都不想要的时候,一起使用的时候就无效了。

setWindowFlags(windowFlags() &~ (Qt::WindowMinMaxButtonsHint | Qt::WindowCloseButtonHint));

你可能感兴趣的:(Qt)