Bootstrap

001 如何使Dialog有最小最大化按钮?

Qt::WindowFlags flags=Qt::Dialog;
flags |=Qt::WindowMinimizeButtonHint;
flags |=Qt::WindowMaximizeButtonHint;
flags |=Qt::WindowCloseButtonHint;
setWindowFlags(flags);

;