每天一得:窗口转圈
Posted zzdoit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了每天一得:窗口转圈相关的知识,希望对你有一定的参考价值。
#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种状态
以上是关于每天一得:窗口转圈的主要内容,如果未能解决你的问题,请参考以下文章