首页 > 代码库 > 每天一得:窗口转圈
每天一得:窗口转圈
#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种状态
每天一得:窗口转圈
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。