码迷,mamicode.com
首页 > 其他好文 > 详细

DUI-模态对话框的实现

时间:2017-01-11 08:02:14      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:html   cpp   als   pos   shadow   .com   代码   idt   oid   

模态对话框要求自己实现自己的消息循环,当然,建议它还是处于主线程中,所以最好是由它再调用主线程的消息循环函数,此时主线程自身的消息循环函数被阻塞,等待模板对话框的消息循环函数退出

技术分享

参考代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
INT_PTR XX::DoModal(LPCWSTR lpszXmlId, HWND hParent/*=NULL*/bool bShadow/*=false*/, DM::CRect rect/* = NULL*/)
{
    BOOL bEnableParent = FALSE;
    if(NULL == hParent)
    {
        hParent = GetActiveWnd();
    }
     
    if (hParent && hParent != ::GetDesktopWindow() && ::IsWindowEnabled(hParent))
    {
        ::EnableWindow(hParent, FALSE);
        bEnableParent = TRUE;
    }
 
    if(!DM_CreateWindow(lpszXmlId, rect.left,rect.top,rect.Width(),rect.Height(), hParent, bShadow))
    {
        ::EnableWindow(hParent, TRUE);
        return 0; // 此处失败了
    }
 
    GetClientRect(rect);
    if (!rect.IsRectEmpty())
    {
        CenterWindow();
    }
 
    SendMessage(WM_INITDIALOG);//发送init消息
 
    if(GetExStyle()&WS_EX_TOOLWINDOW)
    {
        ::ShowWindow(m_hWnd,SW_SHOWNOACTIVATE);
    }
    else
    {
        ::ShowWindow(m_hWnd,SW_SHOWNORMAL);
    }
 
     
    ::SetWindowPos(m_hWnd, /*HWND_TOP*/HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE | SWP_SHOWWINDOW);
         Run(m_hWnd,true);// 消息循环
 
    if (bEnableParent)
    {
        ::EnableWindow(hParent, TRUE);
    }
 
    return m_nRetCode;
}
 
void  XX::EndDialog( INT_PTR nResult )
{
    m_nRetCode = nResult;
    PostMessage(WM_QUIT);
}

 

http://hgy413.com/1635.html

DUI-模态对话框的实现

标签:html   cpp   als   pos   shadow   .com   代码   idt   oid   

原文地址:http://www.cnblogs.com/findumars/p/6271629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!