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.
我的程序中有一个CTabCtrl和 3 个“子”* CFormView *,当用户更改活动选项卡时我会显示/隐藏它们。
我不想使用固定大小,而是想调整封闭 CTabCtrl 的大小以匹配最大 CFormView 的大小。
你可以使用这个:
GetDlgItem(IDC_YOURCONTROL)->MoveWindow(xPosInScreen, yPosInScreen, 宽度, 高度);
希望能帮助到你。