窗口框架是什么
我在看QT的参考文档的时候看到这样一段话:
The widget flags argument, f, is normally 0, but it can be set to customize the window frame of a top-level widget (i.e. parent must be 0). To customize the frame, set the WStyle_Customize flag OR'ed with any of the Qt::WidgetFlags.
中文翻译过来大概是:
窗口部件标记参数f通常为0,但它可以为顶级窗口部件设置自定义的窗口框架(比如,parent必须为0)。为了自定义框架,设置WStyle_Customize标记和任何一个Qt::WidgetFlags进行或运算。
实在是个刚毕业的学生,不懂窗口框架是什么?请各位帮帮我哦!
参考答案:qt?
这里的window frame,是指这个窗口边框的style吧。如果是容器窗口(就是不被别的窗口包含),可以设置这个widget flag为WStyle_Customize OR(加)别的内定的属性值。