当前位置:网站首页>MFC dynamically creates dialog boxes and changes the size and position of controls
MFC dynamically creates dialog boxes and changes the size and position of controls
2022-07-06 06:18:00 【Laobai 436196571】
1、 Dynamically create dialog
void CXXX_DEMODlg::OnBnClickedBtntest()
{
if(dlg_num==0)// Open only once
{
DLG_TEST *pDlg=new DLG_TEST;
pDlg->Create(IDD_DLG_TEST, this);// Always at the top
//pDlg->Create(IDD_DLG_TEST, GetDesktopWindow());
pDlg->ShowWindow(SW_SHOW);
dlg_num+=1;
}
}
2、 Delete pointer in WM_NCDESTROY in delete this
void DLG_TEST::OnBnClickedCancel()
{
// TODO: Add control notification handler code here
dlg_num-=1;
OnCancel();
}
void DLG_TEST::OnNcDestroy()
{
CDialog::OnNcDestroy();
// TODO: Add message handler code here
delete this;
}
Reference resources :
MFC Click button , Another dialog box pops up
CWnd Class MoveWindow() or SetWindowPos() You can change the size and position of the control .
void MoveWindow(int x,int y,int nWidth,int nHeight);
void MoveWindow(LPCRECT lpRect);
The first usage needs to give the new coordinates and width of the control 、 Height ;
The second usage gives the storage location CRect object ;
example :
CWnd *pWnd;pWnd = GetDlgItem( IDC_EDIT1 ); // Get control pointer ,IDC_EDIT1 For control ID Number
pWnd->MoveWindow( CRect(0,0,100,100) ); // Display a width in the upper left corner of the window 100、 high 100 Edit control for
SetWindowPos() Functions are more flexible , It is mostly used when only the position of the control is modified and the size remains unchanged, or when only the size is modified and the position remains unchanged :
BOOL SetWindowPos(const CWnd* pWndInsertAfter,int x,int y,int cx,int cy,UINT nFlags);
I can't use the first parameter , General set to NULL;
x、y Control location ;cx、cy Control width and height ;
nFlags Common values :
SWP_NOZORDER: Ignore the first parameter :
SWP_NOMOVE: Ignore x、y, Keep the position unchanged ;
SWP_NOSIZE: Ignore cx、cy, Keep the size unchanged ;
example :
CWnd *pWnd;pWnd = GetDlgItem( IDC_BUTTON1 ); // Get control pointer ,IDC_BUTTON1 For control ID Number
pWnd->SetWindowPos( NULL,50,80,0,0,SWP_NOZORDER | SWP_NOSIZE ); // Move the button to the window (50,80) It's about
pWnd = GetDlgItem( IDC_EDIT1 );
pWnd->SetWindowPos( NULL,0,0,100,80,SWP_NOZORDER | SWP_NOMOVE ); // Set the size of the edit control to (100,80), Position the same
pWnd = GetDlgItem( IDC_EDIT1 );
pWnd->SetWindowPos( NULL,0,0,100,80,SWP_NOZORDER ); // The size and position of the editing control are changed. The above method is also applicable to all kinds of windows .
边栏推荐
猜你喜欢
Significance of unit testing
职场进阶指南:大厂人必看书籍推荐
Nodejs realizes the third-party login of Weibo
Properties file
B - The Suspects
D - How Many Answers Are Wrong
在uni-app中使用腾讯视频插件播放视频
ESP32 ESP-IDF看门狗TWDT
Expose the serial fraudster Liu Qing in the currency circle, and default hundreds of millions of Cheng Laolai
oscp raven2靶机渗透过程
随机推荐
php使用redis实现分布式锁
Application du Groupe Li dans gtsam
Qt:无法定位程序输入点XXXXX于动态链接库。
JWT-JSON WEB TOKEN
ICLR 2022 spotlight | analog transformer: time series anomaly detection method based on correlation difference
F - True Liars (种类并查集+DP)
模拟卷Leetcode【普通】1143. 最长公共子序列
[C language] string left rotation
Web界面元素的测试
模拟卷Leetcode【普通】1296. 划分数组为连续数字的集合
Idea new UI usage
How to extract login cookies when JMeter performs interface testing
B - The Suspects
【Postman】测试(Tests)脚本编写和断言详解
Technology sharing | common interface protocol analysis
进程和线程的理解
Overview of three core areas of Mathematics: geometry
leetcode 24. 两两交换链表中的节点
Interface test: what are the components of the URL in fiddler
「 WEB测试工程师 」岗位一面总结