明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2656|回复: 6

beginEditorCommand()的一个问题?

[复制链接]
发表于 2003-4-16 13:14:00 | 显示全部楼层 |阅读模式
下面是一个按钮的消息相映函数,调用BeginEditorCommand();把焦点交给AutoCAD.但都用后交给了AutoCAD,但对话框怎么隐藏不了!
void GRALIBMAIN::OnButtonInsert()
{
        // TODO: Add your control notification handler code here

        BeginEditorCommand();//Òþ²Ø¶Ô»°¿òº¯Êý
        ads_point basept;
        InsertDlg Indlg;

//        int nReturnValue = Indlg.DoModal();
        if (acedGetPoint(NULL, "\nPick a point: ", basept) == RTNORM)
        {
                CompleteEditorCommand();
//                m_strXPt.Format("%g", basept[X]);
//                m_strYPt.Format("%g", basept[Y]);
//                m_strZPt.Format("%g", basept[Z]);
       
        }
        else
        {
                CancelEditorCommand();
        }

}
同样书上的一个例子就能隐藏!
void AsdkAcUiDialogSample::OnButtonPoint()
{
    // Òþ²Ø¶Ô»°¿ò£¬²¢½«¿ØÖƽ»¸øAutoCADͼÐα༭Æ÷
    BeginEditorCommand();

    ads_point pt;

    // »ñÈ¡Ò»¸öµã
    if (acedGetPoint(NULL, "\nPick a point: ", pt) == RTNORM) {
        // Èç¹ûµÃµ½Ò»¸öµã£¬Ôò¼ÌÐø
        CompleteEditorCommand();
        m_strXPt.Format("%g", pt[X]);
        m_strYPt.Format("%g", pt[Y]);
        m_strZPt.Format("%g", pt[Z]);
        DisplayPoint();
    } else {
        // Èç¹ûûÓеõ½Ò»¸öµã£¬Èç°´ÏÂESC¼ü£¬ÔòÖжÏÓ¦ÓóÌÐòµÄÖ´ÐÐ.
        CancelEditorCommand();
    }
}

清高手指点!!
谢谢!

评分

参与人数 1金钱 +18 收起 理由
风雨兼程 + 18 很好

查看全部评分

发表于 2003-6-27 17:35:00 | 显示全部楼层
我认为问题不在这里,你的对话框是不是MFC中的?如果是从CDialog中派生过来的,请改正,应该用CAcUiDialog,也就是把所有的Cdiglog用CAcUiDialog代替
发表于 2003-6-30 09:29:00 | 显示全部楼层
调用一下ShowWindow(SW_HIDE);
发表于 2003-7-1 17:10:00 | 显示全部楼层
支持2樓看法.
发表于 2003-7-2 10:06:00 | 显示全部楼层
谢谢支持
发表于 2003-7-2 22:24:00 | 显示全部楼层
就是2的看法 在消息映射时一定要以CAcUiDialog为基类,否则成为非模式对话框。
发表于 2006-8-6 13:19:00 | 显示全部楼层

你跟我一样,只把类的继承改成 CAcUiDialog

而忘下改下边的消息循环

BEGIN_MESSAGE_MAP(newDlg, CAcUiDialog)
 //{{AFX_MSG_MAP(newDlg)
 ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
 //}}AFX_MSG_MAP
END_MESSAGE_MAP()

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 23:25 , Processed in 0.180680 second(s), 26 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表