网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > VC++ > 正文
一个很COOL的对话框弹出效果
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/15
下载{$ArticleTitle}原创论文样式

内容:
//1.在实现文件中的include之后加入一个辅助函数


void WINAPI DrawWireRects(LPRECT lprcFrom, LPRECT lprcTo, UINT nMilliSecSpeed)
{
    const int nNumSteps = 10;

GdiFlush();
    Sleep(50);  // Let the desktop window sort itself out

// if hwnd is null - "you have the CON".
HDC hDC = ::GetDC(NULL);

// Pen size, urmmm not too thick
    HPEN hPen = ::CreatePen(PS_SOLID, 2, RGB(0,0,0));

int nMode = ::SetROP2(hDC, R2_NOT);
HPEN hOldPen = (HPEN) ::SelectObject(hDC, hPen);

for (int i = 0; i < nNumSteps; i++)
{
        double dFraction = (double) i / (double) nNumSteps;

        RECT transition;
        transition.left   = lprcFrom->left + (int)((lprcTo->left - lprcFrom->left) * dFraction);
        transition.right  = lprcFrom->right + (int)((lprcTo->right - lprcFrom->right) * dFraction);
        transition.top    = lprcFrom->top + (int)((lprcTo->top - lprcFrom->top) * dFraction);
        transition.bottom = lprcFrom->bottom + (int)((lprcTo->bottom - lprcFrom->bottom) * dFraction);

POINT pt;
pt[0] = CPoint(transition.left, transition.top);
pt = CPoint(transition.right,transition.top);
pt = CPoint(transition.right,transition.bottom);
pt = CPoint(transition.left, transition.bottom);
pt = CPoint(transition.left, transition.top);

// We use Polyline because we can determine our own pen size
// Draw Sides
::Polyline(hDC,pt,5);

GdiFlush();

Sleep(nMilliSecSpeed);

// UnDraw Sides
::Polyline(hDC,pt,5);

GdiFlush();
}

::SetROP2(hDC, nMode);
::SelectObject(hDC, hOldPen);

::ReleaseDC(NULL,hDC);
}


//2.为About对话框加入:
   CRect m_rectFrom;//成员变量


//3.在About的OnCreaet中加入:
if (!m_rectFrom.IsRectEmpty())
{
CRect rectTo(lpCreateStruct->x,lpCreateStruct->y,
lpCreateStruct->x + lpCreateStruct->cx,
    lpCreateStruct->y + lpCreateStruct->cy);
         
   DrawWireRects(m_rectFrom, rectTo, 20);
     
//  DrawAnimatedRects(m_hWnd, IDANI_CAPTION, m_rectFrom,rectTo);
  //     不要效果时

}

  //在About的DestoryWindow上加入:

if (!m_rectFrom.IsRectEmpty())
{
CRect rect;
GetWindowRect(rect);

          rect.DeflateRect(2,2);
         DrawWireRects(rect, m_rectFrom, 20);
      
    // DrawAnimatedRects(m_hWnd,IDANI_CAPTION, rect, m_rectFrom);
    //  不要效果时
}

//激活时用:
CAboutDlg about;
m_btn.GetWindowRect(about.m_rectFrom);
     &
  • 下一篇资讯: 穿透代理服务器编程
  • 网学推荐

    免费论文

    原创论文

    浏览:
    设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
    版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
    Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
    湘ICP备09003080号