在做界面的时候,MFC没有layout布局,默认情况下,对话框大小固定,且里面的控件大小固定。针对这种情况做了一点优化。
上图
用法步骤:
1.添加ControlAutoLayout.h, ControlAutoLayout.cpp, Layout.h到项目里
2.添加ControlAutoLayout.h 到dialog class 中
3.创建ControlAutoLayout 类对象实例
4.在OnInitDialog()中添加control_auto_layout_.SetDialogHandle(this);
5.在OnSize()
control_auto_layout_.InitLayout(int window_width, int window_height);
control_auto_layout_.SetControlAutoChangeMode(int ctrl_id, int left_change_mode,
int right_change_mode, int top_change_mode, int bottom_change_mode);
有个小小的注意事项:
以前版本底下默认生成的是stdafx.h stdafx.cpp, VS2019 底下默认生成的是pch.h pch.cpp
如何在MFC的程序中添加BCG美化,VS2019和VC6.0底下差不多。参看前篇。