목록이동 (1)
바람이 머문 언덕
일반창에서 상태바에서처럼 윈도우 움직이기
윈도우 창태바가 없는 윈도우에서 윈도우를 이동 시키기 위해서 api 함수를 이용해서 만든 클레스 입니다. #include class movewindow { public: movewindow(); ~movewindow(); void bottonup(); void move(int x,int y); void bottondown(int x, int y,HWND h); private: bool ifla; HWND hwnd; int poxy, poxx; }; movewindow::movewindow() { hwnd=NULL; ifla=FALSE; } movewindow::~movewindow() { } void movewindow::bottondown(int x, int y,HWND h) { if(!ifla) { ..
컴퓨터 IT/C++ 언어
2009. 11. 25. 18:00