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.
在 Windows 7 下使用 wxFormBuilder,有没有办法将我的主 wxFrame 设置为固定大小以避免调整大小?谢谢
我不知道如何专门用 wxFB 来做,但你需要wxRESIZE_BORDER从你的框架中删除样式。由于默认情况下使用它,您可能需要明确指定要使用的标志,例如wxDEFAULT_FRAME_STYLE & ~(wxRESIZE_BORDER | wxMAXIMIZE_BOX).
wxRESIZE_BORDER
wxDEFAULT_FRAME_STYLE & ~(wxRESIZE_BORDER | wxMAXIMIZE_BOX)
是的,您可以通过简单地在 size 属性中指定框架大小并在最大值和最小值中提供相同的框架大小来避免 wxFormBuilder 中的 wxFrame 调整大小,这将阻止窗口调整大小。