MoveWindow

MoveWindow

刚做的那个软件界面很重要,就象是把自己做的一个个控件网上画一样,还要按照实际运行效果来不断调整位置,很麻烦。当时使用MoveWindow()这个函数来控制对话框的大小和位置,不了解参数情况,在网上查了,记得好象放在这里备忘,那时还觉得blog真是方便。结果现在又要用起这个函数却又找不到了!不知道是不是放在这个blog里了。看来blog多了还不方便了。不过不要误会,那些都是以前找到这个blog之前暂时用的,都不太满意。最后觉得还是这里好,hoho,方便。晕,我来写这篇日志是干吗的?这么扯到这么远了。。。不说了,还是把MoveWindow()再贴一下吧。。

BOOL MoveWindow
(   HWND hWnd,      
// Handle to the window
     int  X,                      // Specifies the new position of the left side of the window.
     int  Y,                       // Specifies the new position of the top of the window.
     int  nWidth,
    
int  nHeight,
    BOOL bRepaint
);

这个是 API函数,如果在MFC中使用CWnd::MoveWindow则不需要第一个参数句柄hWnd,其他相同。

你可能感兴趣的:(MoveWindow)