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

每天一得:窗口转圈

时间:2016-12-18 10:02:25      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:status   判断   log   win   return   windows   状态   class   pos   

#include <windows.h>

int main()
{
    int x=0, y=0;
    int status = 0;
    while (1)
    {
        if (x==0 && y==0)
        {
            status = 0;
        }
        if (x==1000 && y==0)
        {
            status = 1;
        }
        if (x==1000 && y==600)
        {
            status = 2;
        }
        if (x==0 && y == 600)
        {
            status = 3;
        }
        if (0==status)
        {
            x += 10;
        }
        if (1==status)
        {
            y += 10;
        }
        if (2==status)
        {
            x -= 10;
        }
        if (3==status)
        {
            y -= 10;
        }

        SetWindowPos((HWND)0x00050804,NULL, x, y, 500, 500, 0);
        Sleep(10);
    }
    

    return 0;
}

关键点:判断4种状态

每天一得:窗口转圈

标签:status   判断   log   win   return   windows   状态   class   pos   

原文地址:http://www.cnblogs.com/bing-z/p/6193757.html

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