gpt4 book ai didi

c++ - MFC中改变按钮大小的方法

转载 作者:行者123 更新时间:2023-11-30 01:34:18 25 4
gpt4 key购买 nike

我有一个对话框,我在 OnInitDialog() 中使用以下代码:

RECT rect;
((CButton*)GetDlgItem(IDC_EDIT1))->GetWindowRect(&rect);

RECT rect2;
((CButton*)GetDlgItem(IDC_EDIT1))->SetWindowPos(this,
rect.left,
rect.top,
(rect.right-rect.left)*2,
rect.bottom-rect.top, SWP_FRAMECHANGED);

但是按钮的大小没有改变。什么都没发生。还尝试了具有相同结果的 SWP_SHOWWINDOW 标志。

最佳答案

使用 MoveWindow 而不是 SetWindowPos。通过 GetWindowRect 获取坐标后调用 ScreenToClient 转换坐标。

关于c++ - MFC中改变按钮大小的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56620837/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com