Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一些widget ,qt designer我需要稳定它们的大小,这意味着我想禁用resizable feature。我怎么做?
widget
qt designer
resizable feature
在qt designer,right click在您的对话框中,select尺寸限制 > 设置最大尺寸和设置最小尺寸
right click
select
如果设置为最大值,它至少允许使对话框更小。
将是一种方式,另一种是在您的代码中使用:
setWindowFlags(windowFlags() | Qt::MSWindowsFixedSizeDialogHint);
苏龙仔