zoukankan      html  css  js  c++  java
  • MFC实现 MSN QQ 窗口抖动

    //转载自网友
    void CWindouDlg::OnButton1()
    {
     // TODO: Add your control notification handler code here
    PlaySound(MAKEINTRESOURCE(IDR_WAVE1),AfxGetResourceHandle(),SND_ASYNC|
        SND_RESOURCE|SND_NODEFAULT);//使用PlaySound需要包含头文件 Header: Declared in mmsystem.h.
                                    //Import Library: Use winmm.lib.
     int ty=7;
     CRect   m_rect;  
     GetWindowRect(&m_rect);  
     for(int i=0;i<70;i++)
     {
     SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );
      m_rect.top = m_rect.top + ty; 
      m_rect.left = m_rect.left - ty;
      SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );
      m_rect.top = m_rect.top - ty; 
      m_rect.left = m_rect.left + ty;
      SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );
      m_rect.top = m_rect.top - ty; 
      m_rect.left = m_rect.left + ty;
      SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );
      m_rect.top = m_rect.top + ty; 
      m_rect.left = m_rect.left - ty;
      SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );
     }
    }
    //修改后
     int ty=5;
     CRect   m_rect;  
     GetWindowRect(&m_rect); 
     int recordy=m_rect.left;
     int recordx=m_rect.top;
    for(int i=0;i<3;i++)
     {
        m_rect.left=recordy;
        m_rect.top=recordx;
        m_rect.top = m_rect.top + ty; 
        m_rect.left = m_rect.left - ty;
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );Sleep(35);
        m_rect.top = m_rect.top -ty;
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );Sleep(35);
        m_rect.top = m_rect.top -2*ty;
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );Sleep(35);
        m_rect.left=m_rect.left+ty;
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );Sleep(35);
        m_rect.left=m_rect.left+2*ty;
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );Sleep(35);
        m_rect.top = m_rect.top + ty; 
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );Sleep(35);
        m_rect.top=m_rect.top+2*ty;
        SetWindowPos( NULL,m_rect.left,m_rect.top,0,0,SWP_NOSIZE );
        SetWindowPos( NULL,recordy,recordx,0,0,SWP_NOSIZE );
        Sleep(35);
      }
  • 相关阅读:
    1. 第一章: Python基础语法
    6. 第二章:C#委托和事件之.net framework3.5委托扩展
    5. 第二章:C#委托和事件之事件
    4. 第二章:C#委托和事件之委托
    3. 第一章:C#面向对象编程之继承和多态
    2. 第一章:C#面向对象编程之抽象和封装
    1. 序言
    Xamarin.Forms 调用腾讯地图
    全国行政区划数据大放送——包含邮政编码-电话区号-简拼-区划路径
    【记录】自定义服务器验证控件
  • 原文地址:https://www.cnblogs.com/AkQuan/p/2685883.html
Copyright © 2011-2022 走看看