本文介绍了如何在对话框中更改控件的位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,
我有一个带有某些控件的基于对话框的应用程序.我想根据某些条件更改控件的位置.除了SetWindowPos()和MoveWindow()之外,是否还有其他方法可以更改位置?请帮帮我..

hi all,
i''ve one dialog based application with some controls.i want to change the position of controls based on some conditions.is there any methods other than SetWindowPos() and MoveWindow()to change the position?please help me..
thank you in advance..

推荐答案



void CwebBrowserControlDlg::OnBnClickedOk()
{
    MessageBox(L"Clicked It", L"Info", MB_OK);
    m_Explorer.MoveWindow(0,0, 300, 100, true);
    // TODO: Add your control notification handler code here}


这篇关于如何在对话框中更改控件的位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-07 23:59